aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/error.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-06-29 10:20:51 -0600
committerBen Burdette <bburdette@gmail.com>2020-06-29 10:20:51 -0600
commit8f81fae116b449ef17561c3574d01574544c798c (patch)
treee775375a0407c1cf16b727b2928335a392aab679 /src/libutil/error.cc
parentef24a0835d16baf1aa3f19ffa7ba7af54e6e63e6 (diff)
showTrace flag in loggers
Diffstat (limited to 'src/libutil/error.cc')
-rw-r--r--src/libutil/error.cc3
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_;