aboutsummaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'integrations')
-rw-r--r--integrations/testlogger.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/integrations/testlogger.go b/integrations/testlogger.go
index 246f6fe7d0..70efa95cce 100644
--- a/integrations/testlogger.go
+++ b/integrations/testlogger.go
@@ -181,6 +181,11 @@ func (log *TestLogger) Init(config string) error {
return nil
}
+// Content returns the content accumulated in the content provider
+func (log *TestLogger) Content() (string, error) {
+ return "", fmt.Errorf("not supported")
+}
+
// Flush when log should be flushed
func (log *TestLogger) Flush() {
}