Skip to content

Commit

Permalink
Merge pull request #246 from oxarbitrage/issue81
Browse files Browse the repository at this point in the history
log unexpected exception in close function for github issue 81
  • Loading branch information
vikramrajkumar authored Mar 14, 2017
2 parents f1f1e59 + 24d1ce8 commit 974a7fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/chain/db_management.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,9 @@ void database::close(bool rewind)
}
}
}
catch (...)
catch ( const fc::exception& e )
{
wlog( "Database close unexpected exception: ${e}", ("e", e) );
}
}

Expand Down

0 comments on commit 974a7fc

Please sign in to comment.