From 259a92ac4e1ac50e4c029f54265b735f6214b49d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 28 Apr 2015 18:38:50 +0200 Subject: Minor interface and implementation changes --- brep/module.cxx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'brep') diff --git a/brep/module.cxx b/brep/module.cxx index 4ce635a..a803386 100644 --- a/brep/module.cxx +++ b/brep/module.cxx @@ -35,7 +35,7 @@ namespace brep try { - static const char* s[] = {"err", "warn", "info", "trace"}; + static const char* sev_str[] = {"error", "warning", "info", "trace"}; std::ostream& o = rs.content (500, "text/plain;charset=utf-8"); for (const auto& d: e.data) @@ -52,12 +52,17 @@ namespace brep name = d.name; } - o << "[" << s[static_cast (d.sev)] << "] [" - << name << "] " << d.msg << std::endl; + o << name << ": " << sev_str[d.sev] << ": " << d.msg << endl; + + //o << "[" << s[static_cast (d.sev)] << "] [" + // << name << "] " << d.msg << std::endl; } } catch (const sequence_error&) { + // We tried to return the error status/description but some + // content has already been written. Nothing we can do about + // it. } } } -- cgit v1.1