turned one error into a warning in p3filelists.cc when requesting an unexisting ref

This commit is contained in:
csoler 2016-11-27 12:20:32 +01:00
parent 8b22924b25
commit f3d7948238

View File

@ -829,7 +829,9 @@ int p3FileDatabase::RequestDirDetails(void *ref, DirDetails& d, FileSearchFlags
if(storage==NULL || !storage->extractData(e,d)) if(storage==NULL || !storage->extractData(e,d))
{ {
P3FILELISTS_ERROR() << "(EE) request on index " << e << ", for directory ID=" << ((storage==NULL)?("[NULL]"):(storage->peerId().toStdString())) << " failed. This should not happen." << std::endl; #ifdef DEBUG_FILE_HIERARCHY
P3FILELISTS_DEBUG() << "(WW) request on index " << e << ", for directory ID=" << ((storage==NULL)?("[NULL]"):(storage->peerId().toStdString())) << " failed. This should not happen." << std::endl;
#endif
return false ; return false ;
} }