Avoid opening log output before start &

Replace tracing logs with task monitor
This commit is contained in:
世界
2024-01-03 12:21:46 +08:00
parent 25810b50c1
commit 21283b554a
14 changed files with 231 additions and 266 deletions
+2 -1
View File
@@ -11,11 +11,12 @@ type (
)
type Factory interface {
Start() error
Close() error
Level() Level
SetLevel(level Level)
Logger() ContextLogger
NewLogger(tag string) ContextLogger
Close() error
}
type ObservableFactory interface {