aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2021-10-13 13:28:10 +0000
committerHåvard Pettersen <havardpe@oath.com>2021-10-13 13:28:10 +0000
commit1505325c463a5cd39c0445c5a42eef22b6cb6030 (patch)
treeb64a67a19a8cee285316f1a05ff23f11f1794090 /vespalib
parent3a5c86b7fc5709922c4a95d7534cd178d7c06e6a (diff)
report more issues
also drop the prefix of issues that are logged by the default handler
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/issue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/util/issue.cpp b/vespalib/src/vespa/vespalib/util/issue.cpp
index d60423bfa4d..cfbadadd745 100644
--- a/vespalib/src/vespa/vespalib/util/issue.cpp
+++ b/vespalib/src/vespa/vespalib/util/issue.cpp
@@ -14,7 +14,7 @@ using Link = Issue::Binding::Link;
struct LogIssues : Issue::Handler {
void handle(const Issue &issue) override {
- LOG(warning, "unhandled issue: %s", issue.message().c_str());
+ LOG(warning, "%s", issue.message().c_str());
}
};