refactor: use fs:: over boost::filesystem::

This commit is contained in:
fanquake
2018-08-15 21:05:21 +08:00
parent 80127f074e
commit 4b3b85c597
3 changed files with 6 additions and 6 deletions

View File

@@ -245,7 +245,7 @@ void BCLog::Logger::ShrinkDebugFile()
size_t log_size = 0;
try {
log_size = fs::file_size(m_file_path);
} catch (boost::filesystem::filesystem_error &) {}
} catch (const fs::filesystem_error&) {}
// If debug.log file is more than 10% bigger the RECENT_DEBUG_HISTORY_SIZE
// trim it down by saving only the last RECENT_DEBUG_HISTORY_SIZE bytes