diff options
Diffstat (limited to 'modules/log/multichannel.go')
-rw-r--r-- | modules/log/multichannel.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/log/multichannel.go b/modules/log/multichannel.go index d28071c3f7..c725df4f3e 100644 --- a/modules/log/multichannel.go +++ b/modules/log/multichannel.go @@ -80,7 +80,7 @@ func (l *MultiChannelledLogger) Log(skip int, level Level, format string, v ...i } // SendLog sends a log event at the provided level with the information given -func (l *MultiChannelledLogger) SendLog(level Level, caller, filename string, line int, msg string, stack string) error { +func (l *MultiChannelledLogger) SendLog(level Level, caller, filename string, line int, msg, stack string) error { if l.GetLevel() > level { return nil } |