1
0
Fork 0

do not show irrelevant warning

This commit is contained in:
Jan Steemann 2013-01-13 13:18:57 +01:00
parent 7ead030f17
commit 5f2a6c803b
1 changed files with 4 additions and 4 deletions

View File

@ -678,10 +678,10 @@ static TRI_datafile_t* OpenDatafile (char const* filename, bool ignoreErrors) {
// check the maximal size
if (size > header._maximalSize) {
LOG_WARNING("datafile '%s' has size '%u', but maximal size is '%u'",
filename,
(unsigned int) size,
(unsigned int) header._maximalSize);
LOG_DEBUG("datafile '%s' has size '%u', but maximal size is '%u'",
filename,
(unsigned int) size,
(unsigned int) header._maximalSize);
}
// map datafile into memory