Refactor log factory constructor

This commit is contained in:
世界
2023-04-03 18:24:20 +08:00
parent aa9611d929
commit 1acb794393
10 changed files with 164 additions and 74 deletions

View File

@@ -15,6 +15,7 @@ type Factory interface {
SetLevel(level Level)
Logger() ContextLogger
NewLogger(tag string) ContextLogger
Close() error
}
type ObservableFactory interface {