diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-06 03:23:20 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-09 21:37:04 +0300 |
commit | 5db146ef751507efd4f9556c9a0ab3bb5e88f7c5 (patch) | |
tree | 4814f25c7101588a7dd7433fac4f797972295f95 /mod/database-module.cxx | |
parent | de29ab0fc899955304fc65ae688f69b6ed805bc9 (diff) |
Make use of operator<<(ostream, exception)
Diffstat (limited to 'mod/database-module.cxx')
-rw-r--r-- | mod/database-module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/database-module.cxx b/mod/database-module.cxx index 8c701b1..6fd5025 100644 --- a/mod/database-module.cxx +++ b/mod/database-module.cxx @@ -41,7 +41,7 @@ namespace brep if (retry_-- > 0) { MODULE_DIAG; - l1 ([&]{trace << e.what () << "; " << retry_ + 1 << " retries left";}); + l1 ([&]{trace << e << "; " << retry_ + 1 << " retries left";}); throw retry (); } |