while( (!inFile.is_open()) && inFiles.size() > 0 )
{
- if(out) *out->log << "Opening dat-file: " << inFiles.back() << endl;
+ if(out) *out->log << "CCACHE: Opening dat-file: " << inFiles.back() << endl << flush;
inFile.open( (DATADIR + "/" + inFiles.back()).c_str(), std::ios::binary );
inFiles.pop_back();
int readturn = -1;
try { readturn = boost::iostreams::read(*inBuffer, tmpConfig, configSize); }
catch (std::exception const& ex) {
- if(out) *out->log << "Caught exception: " << ex.what() << endl;
+ if(out) *out->log << "CCACHE: Caught exception: " << ex.what() << endl << flush;
inFile.close();
}