Commit a6602196 authored by Pavel Vainerman's avatar Pavel Vainerman Committed by Pavel Vainerman

(smemory): minor log fixes

parent 33174ca0
...@@ -57,19 +57,19 @@ int main(int argc, const char** argv) ...@@ -57,19 +57,19 @@ int main(int argc, const char** argv)
} }
catch( const SystemError& err ) catch( const SystemError& err )
{ {
dcrit << "(smemory): " << err << endl; cerr << "(smemory): " << err << endl;
} }
catch( const uniset::Exception& ex ) catch( const uniset::Exception& ex )
{ {
dcrit << "(smemory): " << ex << endl; cerr << "(smemory): " << ex << endl;
} }
catch( const std::exception& e ) catch( const std::exception& e )
{ {
dcrit << "(smemory): " << e.what() << endl; cerr << "(smemory): " << e.what() << endl;
} }
catch(...) catch(...)
{ {
dcrit << "(smemory): catch(...)" << endl; cerr << "(smemory): catch(...)" << endl;
} }
return 1; return 1;
......
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