summaryrefslogtreecommitdiff
path: root/internal/source
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-02 11:54:07 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 15:11:23 +0300
commit12c79f68bb5bda6673819d7b754820ecfe6d08ff (patch)
treea779dc77dc8bf5a2dfc2030c718ce4543bfba6c7 /internal/source
parent6e1af993924bc7bebe898b403962db5a6b3505d1 (diff)
reduce logging in serverless mode
Diffstat (limited to 'internal/source')
-rw-r--r--internal/source/source.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/source/source.go b/internal/source/source.go
index bf1c880..73dccb2 100644
--- a/internal/source/source.go
+++ b/internal/source/source.go
@@ -10,9 +10,9 @@ const (
func (s Source) String() string {
switch s {
case Client:
- return "Client"
+ return "CLIENT"
case Server:
- return "Server"
+ return "SERVER"
}
panic("Unknown log source type")