Update log statements

Use filesystem path conversion to string() instead of c_str().
Windows may otherwise output an address.
This commit is contained in:
warptangent
2015-05-08 11:32:20 -07:00
parent 48926d0eeb
commit 71af04669c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ namespace cryptonote
folder /= db->get_db_name();
LOG_PRINT_L0("Loading blockchain from folder " << folder.c_str() << " ...");
LOG_PRINT_L0("Loading blockchain from folder " << folder.string() << " ...");
const std::string filename = folder.string();
try