mattermost/server/public/pluginapi/experimental/common/logapi.go
2025-03-31 10:44:34 +02:00

8 lines
232 B
Go

package common
type LogAPI interface {
LogError(message string, keyValuePairs ...any)
LogWarn(message string, keyValuePairs ...any)
LogInfo(message string, keyValuePairs ...any)
LogDebug(message string, keyValuePairs ...any)
}