aboutsummaryrefslogtreecommitdiff
path: root/src/context/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.go')
-rw-r--r--src/context/context.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/context/context.go b/src/context/context.go
index 30adfe987d..763d4f777f 100644
--- a/src/context/context.go
+++ b/src/context/context.go
@@ -739,6 +739,8 @@ func stringify(v any) string {
return s.String()
case string:
return s
+ case nil:
+ return "<nil>"
}
return reflectlite.TypeOf(v).String()
}