summaryrefslogtreecommitdiffstats
path: root/modules/log/provider.go
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-04-22 04:32:25 +0800
committerGitHub <noreply@github.com>2023-04-21 16:32:25 -0400
commit911975059a50e71632d33567da7000a97aa28f22 (patch)
tree336ccc3a6ca64ab0967daf4cbbd8f908f4dac078 /modules/log/provider.go
parent65fe0fb22cfb264f0b756065d0c3ce7a17d7e55b (diff)
downloadgitea-911975059a50e71632d33567da7000a97aa28f22.tar.gz
gitea-911975059a50e71632d33567da7000a97aa28f22.zip
Improve test logger (#24235)
Before, there was a `log/buffer.go`, but that design is not general, and it introduces a lot of irrelevant `Content() (string, error) ` and `return "", fmt.Errorf("not supported")` . And the old `log/buffer.go` is difficult to use, developers have to write a lot of `Contains` and `Sleep` code. The new `LogChecker` is designed to be a general approach to help to assert some messages appearing or not appearing in logs.
Diffstat (limited to 'modules/log/provider.go')
-rw-r--r--modules/log/provider.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/log/provider.go b/modules/log/provider.go
index 490c3fa71b..b5058139d7 100644
--- a/modules/log/provider.go
+++ b/modules/log/provider.go
@@ -6,7 +6,6 @@ package log
// LoggerProvider represents behaviors of a logger provider.
type LoggerProvider interface {
Init(config string) error
- Content() (string, error)
EventLogger
}