mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
8 lines
232 B
Go
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)
|
|
}
|