diff options
| author | Paul Buetow <paul@buetow.org> | 2021-10-02 11:54:07 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-10-02 15:11:23 +0300 |
| commit | 12c79f68bb5bda6673819d7b754820ecfe6d08ff (patch) | |
| tree | a779dc77dc8bf5a2dfc2030c718ce4543bfba6c7 /internal/io | |
| parent | 6e1af993924bc7bebe898b403962db5a6b3505d1 (diff) | |
reduce logging in serverless mode
Diffstat (limited to 'internal/io')
| -rw-r--r-- | internal/io/dlog/dlog.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/io/dlog/dlog.go b/internal/io/dlog/dlog.go index 3de3120..6cacfe2 100644 --- a/internal/io/dlog/dlog.go +++ b/internal/io/dlog/dlog.go @@ -180,11 +180,6 @@ func (d *DLog) Warn(args ...interface{}) string { } func (d *DLog) Info(args ...interface{}) string { - if d.sourcePackage == source.Server && d.sourceProcess != source.Client { - // This can be dtail client in serverless mode. In this case log all - // info server messages as verbose. - return d.log(VERBOSE, args) - } return d.log(INFO, args) } |
