Skip to content

Commit de29d3f

Browse files
committed
Add a stacktrace-inducing template token
Having `err` objects respond to `%+v` is quite widespread within the golang ecosystem. Add a logger template unit supporting this behavior.
1 parent 226e4f0 commit de29d3f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

middleware/logger.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ type (
4141
// - user_agent
4242
// - status
4343
// - error
44+
// - error_stacktrace (err passed through Sprintf's '%+v')
4445
// - latency (In nanoseconds)
4546
// - latency_human (Human readable)
4647
// - bytes_in (Bytes received)
@@ -198,8 +199,12 @@ func LoggerWithConfig(config LoggerConfig) echo.MiddlewareFunc {
198199
if err != nil {
199200
// Error may contain invalid JSON e.g. `"`
200201
b, _ := json.Marshal(err.Error())
201-
b = b[1 : len(b)-1]
202-
return buf.Write(b)
202+
return buf.Write(b[1 : len(b)-1])
203+
}
204+
case "error_stacktrace":
205+
if err != nil {
206+
b, _ := json.Marshal(fmt.Sprintf("%+v", err))
207+
return buf.Write(b[1 : len(b)-1])
203208
}
204209
case "latency":
205210
l := stop.Sub(start)

0 commit comments

Comments
 (0)