Add KVStore service and Log service for Focalboard multi product architecture (#20563)

* add KVStore service, add Log service
Этот коммит содержится в:
Doug Lauder
2022-06-29 09:08:34 -04:00
коммит произвёл GitHub
родитель 90c687b728
Коммит 7e4024665c
4 изменённых файлов: 32 добавлений и 16 удалений

Просмотреть файл

@@ -30,14 +30,18 @@ const (
type LoggerIFace interface {
IsLevelEnabled(Level) bool
Trace(string, ...Field)
Debug(string, ...Field)
Info(string, ...Field)
Warn(string, ...Field)
Error(string, ...Field)
Critical(string, ...Field)
Fatal(string, ...Field)
Log(Level, string, ...Field)
LogM([]Level, string, ...Field)
With(fields ...Field) *Logger
Flush() error
StdLogger(level Level) *log.Logger
}
// Type and function aliases from Logr to limit the spread of dependencies.