Minor : reduce logging level

This commit is contained in:
auria.mg 2017-01-09 20:30:08 -05:00
parent ebf3893f73
commit 7e6761e968

View File

@ -791,7 +791,7 @@ bool FileManager::checkAndCreateDirectoryP(const std::string &path)
for (unsigned int i=0; i<split.size(); i++)
{
current_path += split[i] + "/";
Log::info("[FileManager]", "Checking for: '%s",
Log::verbose("[FileManager]", "Checking for: '%s",
current_path.c_str());
if (!m_file_system->existFile(io::path(current_path.c_str())))
{