mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-16 09:09:30 -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)
|
|
}
|