diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-25 20:31:23 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-25 20:31:23 +0000 |
commit | a59ee560978159013ade1bfb878d39cf9c551476 (patch) | |
tree | 90f51e64cb9943fa8b06416467bb173b6336fb24 /pkg/log/json.go | |
parent | f01e5389f8edfb79df55b8fef1e8bf5a30a93fb7 (diff) | |
parent | 6def8ea6ac601daa9256a31f818db9f7eb532168 (diff) |
Merge release-20200219.0-36-g6def8ea (automated)
Diffstat (limited to 'pkg/log/json.go')
-rw-r--r-- | pkg/log/json.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/log/json.go b/pkg/log/json.go index a278c8fc8..0943db1cc 100644 --- a/pkg/log/json.go +++ b/pkg/log/json.go @@ -62,7 +62,7 @@ type JSONEmitter struct { } // Emit implements Emitter.Emit. -func (e JSONEmitter) Emit(level Level, timestamp time.Time, format string, v ...interface{}) { +func (e JSONEmitter) Emit(_ int, level Level, timestamp time.Time, format string, v ...interface{}) { j := jsonLog{ Msg: fmt.Sprintf(format, v...), Level: level, |