Merge pull request #246 from oxarbitrage/issue81

log unexpected exception in close function for github issue 81
This commit is contained in:
Vikram Rajkumar 2017-03-14 00:34:17 -05:00 committed by GitHub
commit 974a7fc0c8

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) );
}
}