diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-06-29 10:20:51 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-06-29 10:20:51 -0600 |
commit | 8f81fae116b449ef17561c3574d01574544c798c (patch) | |
tree | e775375a0407c1cf16b727b2928335a392aab679 /src/libutil/error.cc | |
parent | ef24a0835d16baf1aa3f19ffa7ba7af54e6e63e6 (diff) |
showTrace flag in loggers
Diffstat (limited to 'src/libutil/error.cc')
-rw-r--r-- | src/libutil/error.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libutil/error.cc b/src/libutil/error.cc index 0210555c5..0199ee5f8 100644 --- a/src/libutil/error.cc +++ b/src/libutil/error.cc @@ -26,7 +26,8 @@ const string& BaseError::calcWhat() const err.name = sname(); std::ostringstream oss; - oss << err; + showErrorInfo(oss, err, false); + // oss << err; what_ = oss.str(); return *what_; |