summaryrefslogtreecommitdiff
path: root/pkg/config/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/config/log.go')
-rw-r--r--pkg/config/log.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/config/log.go b/pkg/config/log.go
new file mode 100644
index 0000000..9aa24b6
--- /dev/null
+++ b/pkg/config/log.go
@@ -0,0 +1,7 @@
+package config
+
+import "log"
+
+func init() {
+ log.SetFlags(log.Lshortfile)
+}