X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FTarget.cc;h=9c883dc979c2758bc9acc5b00548dab7e94a82c6;hb=61dc3812717cdc89fa2402006d4009236b72dc8f;hp=7896bf0787983a9ad2911a80776f00728bdc8009;hpb=7f1c36ac78c8aec05f857d7594ea70e865c822ef;p=senf.git diff --git a/Utils/Logger/Target.cc b/Utils/Logger/Target.cc index 7896bf0..9c883dc 100644 --- a/Utils/Logger/Target.cc +++ b/Utils/Logger/Target.cc @@ -313,7 +313,7 @@ namespace { std::string formatLabel(std::string const & l) { if (l.empty()) - return "-"; + return "*"; if (l.size() > 29) return l.substr(l.size()-29); return l; @@ -323,7 +323,7 @@ namespace { prefix_ void senf::log::Target::consoleList(std::ostream & os) { static char const * levels[] = { - "none", "verbose", "notice", "message", "important", "critical", "fatal", "disabled" }; + "verbose", "verbose", "notice", "message", "important", "critical", "fatal", "disabled" }; boost::format fmt ("%2d %-29s %-29s %-9s %-6s\n"); os << fmt % "#" % "STREAM" % "AREA" % "LEVEL" % "ACTION";