diff options
author | Valery Piashchynski <[email protected]> | 2021-03-13 21:37:43 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-03-13 21:37:43 +0300 |
commit | 903e2125991fe2c2db48fc5f687397219edc2abc (patch) | |
tree | ed99650d143974fdc16d6007acb295748ff1395a /plugins | |
parent | 594d801d14bb394b20eec14690d1b616e2c4d56d (diff) |
Fix typo Info -> Error level
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/logger/std_log_adapter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/logger/std_log_adapter.go b/plugins/logger/std_log_adapter.go index d9a29451..484cc23e 100644 --- a/plugins/logger/std_log_adapter.go +++ b/plugins/logger/std_log_adapter.go @@ -12,7 +12,7 @@ type StdLogAdapter struct { // Write io.Writer interface implementation func (s *StdLogAdapter) Write(p []byte) (n int, err error) { - s.log.Info("server internal stderr", "message", toString(p)) + s.log.Error("server internal error", "message", toString(p)) return len(p), nil } |