summaryrefslogtreecommitdiffstats
path: root/modules/log/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/log/file.go')
-rw-r--r--modules/log/file.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/log/file.go b/modules/log/file.go
index 55147ffac8..2ec6de450c 100644
--- a/modules/log/file.go
+++ b/modules/log/file.go
@@ -253,15 +253,6 @@ func (log *FileLogger) deleteOldLog() {
})
}
-// Content returns the content accumulated in the content provider
-func (log *FileLogger) Content() (string, error) {
- b, err := os.ReadFile(log.Filename)
- if err != nil {
- return "", err
- }
- return string(b), nil
-}
-
// Flush flush file logger.
// there are no buffering messages in file logger in memory.
// flush file means sync file from disk.