diff --git a/src/controller/controller_storage.cpp b/src/controller/controller_storage.cpp index 26a1c951..68a0770f 100644 --- a/src/controller/controller_storage.cpp +++ b/src/controller/controller_storage.cpp @@ -31,8 +31,8 @@ namespace Controller { char buffer [100]; time (&rawtime); timeinfo = localtime (&rawtime); - strftime (buffer,100,"%b %d %Y -- %H:%M",timeinfo); - std::cout << "(" << buffer << ") [" << kind << "] " << message << std::endl; + strftime(buffer,100,"%F %H:%M:%S",timeinfo); + std::cout << "[" << buffer << "] " << kind << ": " << message << std::endl; } ///\brief Write contents to Filename diff --git a/src/output/output.cpp b/src/output/output.cpp index a5748341..1536341e 100644 --- a/src/output/output.cpp +++ b/src/output/output.cpp @@ -280,7 +280,7 @@ namespace Mist { unsigned long pageNum = pageNumForKey(trackId, keyNum); while (pageNum == -1){ if (!timeout){ - DEBUG_MSG(DLVL_DEVEL, "Requesting/waiting for page that has key %lu:%lld...", trackId, keyNum); + DEBUG_MSG(DLVL_VERYHIGH, "Requesting page with key %lu:%lld", trackId, keyNum); } if (timeout++ > 100){ DEBUG_MSG(DLVL_FAIL, "Timeout while waiting for requested page. Aborting.");