log unexpected exception in close function for github issue 81

This commit is contained in:
oxarbitrage 2017-03-13 17:03:15 -07:00
parent f1f1e59664
commit 24d1ce8b1f

View file

@ -165,8 +165,9 @@ void database::close(bool rewind)
} }
} }
} }
catch (...) catch ( const fc::exception& e )
{ {
wlog( "Database close unexpected exception: ${e}", ("e", e) );
} }
} }