X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/6b382d09f3825aca16f33e28e479b663d22e8a43..931c993776aa8bc41f11d6d676a894324d73a1a3:/writeout.cpp diff --git a/writeout.cpp b/writeout.cpp index 0cb486c..9a5409d 100644 --- a/writeout.cpp +++ b/writeout.cpp @@ -9,6 +9,7 @@ #include #include #include +#include using namespace std; @@ -32,12 +33,28 @@ writeout::writeout(const string& wdir, const string& signature, if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() ); else of.open( (fulldir + "/" + signature + ".dat").c_str() ); + logf.open( (fulldir + "/rank" + cRank + ".log").c_str() ); + + logf << "[ " << timestring() << " ] Log starts here." << endl; + buf = of.rdbuf(); + logbuf = logf.rdbuf(); } else{ buf = cout.rdbuf(); + logbuf = cerr.rdbuf(); } out = new ostream(buf); + log = new ostream(logbuf); +} + +string writeout::timestring() +{ + time_t rawtime; + string timestring; + time( &rawtime ); + timestring = asctime( localtime( &rawtime ) ); + return timestring.substr(0, timestring.size()-1);; } writeout::~writeout() @@ -78,6 +95,8 @@ writeout::~writeout() (fulldir + "/rank" + cRank + ".part").c_str()); } } + logf << "[ " << timestring() << " ] Log ends here." << endl; + logf.close(); } string writeout::getdatfile()