diff options
Diffstat (limited to 'modules/log/console.go')
-rw-r--r-- | modules/log/console.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/log/console.go b/modules/log/console.go index 7ecdd5c3b8..8c78add474 100644 --- a/modules/log/console.go +++ b/modules/log/console.go @@ -66,6 +66,11 @@ func (log *ConsoleLogger) Init(config string) error { return nil } +// Content returns the content accumulated in the content provider +func (log *ConsoleLogger) Content() (string, error) { + return "", fmt.Errorf("not supported") +} + // Flush when log should be flushed func (log *ConsoleLogger) Flush() { } |