Commit 97887904 authored by Pavel Vainerman's avatar Pavel Vainerman

Немного подправил фоматирование выводимых логов.

parent 8c1398d4
......@@ -28,6 +28,7 @@
#include <sstream>
#include <iomanip>
#include <time.h>
#include <iomanip>
using std::ostream;
using std::streambuf;
......@@ -239,7 +240,7 @@ std::ostream & DebugStream::debug(Debug::type t)
{
if( show_datetime )
print_datetime(t);
*this << "(" << t << "): "; // "):\t";
*this << "(" << std::setfill(' ') << std::setw(6) << t << "): "; // "):\t";
return *this;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment