summaryrefslogtreecommitdiff
path: root/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'log.go')
-rw-r--r--log.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.go b/log.go
index 9f07af3..1382816 100644
--- a/log.go
+++ b/log.go
@@ -34,7 +34,7 @@ func Log(x any, a ...any) {
if ! f.B {
return
}
- a = append([]any{f.Subsystem}, a...)
+ a = append([]any{f.Short}, a...)
origlog.Println(a...)
default:
a = append([]any{x}, a...)