mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
9 lines
264 B
Go
9 lines
264 B
Go
|
|
package common
|
||
|
|
|
||
|
|
type LogAPI interface {
|
||
|
|
LogError(message string, keyValuePairs ...interface{})
|
||
|
|
LogWarn(message string, keyValuePairs ...interface{})
|
||
|
|
LogInfo(message string, keyValuePairs ...interface{})
|
||
|
|
LogDebug(message string, keyValuePairs ...interface{})
|
||
|
|
}
|