mirror of
https://github.com/mattermost/mattermost.git
synced 2026-06-11 20:07:34 +00:00
9 lines
232 B
Go
9 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)
|
|
}
|