Merge pull request #246 from oxarbitrage/issue81
log unexpected exception in close function for github issue 81
This commit is contained in:
commit
974a7fc0c8
1 changed files with 2 additions and 1 deletions
|
|
@ -165,8 +165,9 @@ void database::close(bool rewind)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (...)
|
catch ( const fc::exception& e )
|
||||||
{
|
{
|
||||||
|
wlog( "Database close unexpected exception: ${e}", ("e", e) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue