BUG/MINOR: trace: Wrong displayed trace level
With commit a1f12746b ("MINOR: traces: add a new level "error" below
the "user" level") a new trace level was inserted, resulting in
shifting all exiting ones by one. But the levels reported in the
__trace() function were not updated accordingly, resulting in the
TRACE_LEVEL_DEVELOPER not to be properly reported anymore. This
patch fixes it by extending the number of levels to 6.
No backport is needed.
diff --git a/src/trace.c b/src/trace.c
index 3184354..d3722a1 100644
--- a/src/trace.c
+++ b/src/trace.c
@@ -190,7 +190,7 @@
line[words++] = ist(tnum);
line[words++] = src->name;
line[words++] = ist("|");
- line[words++] = ist2("01234" + level, 1); // "0" to "4"
+ line[words++] = ist2("012345" + level, 1); // "0" to "5"
line[words++] = ist("|");
line[words] = where;
if (line[words].len > 13) {