Index: src/libchcore/TSubTaskScanDirectory.cpp =================================================================== diff -u -N -r3b320bc86d4e808c2f6a70c10bd5c9936102b301 -ra27d1acf1bda3c25b6dcce0d0eb0278009ce63ae --- src/libchcore/TSubTaskScanDirectory.cpp (.../TSubTaskScanDirectory.cpp) (revision 3b320bc86d4e808c2f6a70c10bd5c9936102b301) +++ src/libchcore/TSubTaskScanDirectory.cpp (.../TSubTaskScanDirectory.cpp) (revision a27d1acf1bda3c25b6dcce0d0eb0278009ce63ae) @@ -29,7 +29,6 @@ #include "TWorkerThreadController.h" #include "TTaskLocalStats.h" #include -#include "..\libicpf\log.h" #include "TFileInfoArray.h" #include "TFileInfo.h" #include "TCoreException.h" @@ -40,6 +39,7 @@ #include "TBufferSizes.h" #include "TFileException.h" #include "TFilesystemFeedbackWrapper.h" +#include "log.h" namespace chcore { @@ -85,7 +85,7 @@ TFeedbackHandlerWrapperPtr spFeedbackHandler(boost::make_shared(spFeedback, guard)); // log - icpf::log_file& rLog = GetContext().GetLog(); + chcore::log_file& rLog = GetContext().GetLog(); TFileInfoArray& rFilesCache = GetContext().GetFilesCache(); TWorkerThreadController& rThreadController = GetContext().GetThreadController(); TBasePathDataContainerPtr spBasePaths = GetContext().GetBasePaths(); @@ -168,7 +168,7 @@ // don't add folder contents when moving inside one disk boundary // log strFormat = _T("Recursing folder %path"); - strFormat.Replace(_t("%path"), spFileInfo->GetFullFilePath().ToString()); + strFormat.Replace(_T("%path"), spFileInfo->GetFullFilePath().ToString()); rLog.logi(strFormat.c_str()); ScanDirectory(spFileInfo->GetFullFilePath(), spBasePath, true, !bIgnoreDirs || bForceDirectories, rafFilters);