Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
82 lines
1.8 KiB
Go
82 lines
1.8 KiB
Go
// Copyright (c) 2019-present Mattermost, Inc. All Rights Reserved.
|
|
// See License for license information.
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"maps"
|
|
"time"
|
|
|
|
"github.com/mattermost/mattermost/server/public/pluginapi/experimental/common"
|
|
)
|
|
|
|
type defaultLogger struct {
|
|
logContext LogContext
|
|
logAPI common.LogAPI
|
|
}
|
|
|
|
/*
|
|
New creates a new logger.
|
|
|
|
- api: LogAPI implementation
|
|
*/
|
|
func New(api common.LogAPI) Logger {
|
|
l := &defaultLogger{
|
|
logAPI: api,
|
|
}
|
|
return l
|
|
}
|
|
|
|
func (l *defaultLogger) With(logContext LogContext) Logger {
|
|
newLogger := *l
|
|
if len(newLogger.logContext) == 0 {
|
|
newLogger.logContext = map[string]any{}
|
|
}
|
|
maps.Copy(newLogger.logContext, logContext)
|
|
return &newLogger
|
|
}
|
|
|
|
func (l *defaultLogger) WithError(err error) Logger {
|
|
newLogger := *l
|
|
if len(newLogger.logContext) == 0 {
|
|
newLogger.logContext = map[string]any{}
|
|
}
|
|
newLogger.logContext[ErrorKey] = err.Error()
|
|
return &newLogger
|
|
}
|
|
|
|
func (l *defaultLogger) Context() LogContext {
|
|
return l.logContext
|
|
}
|
|
|
|
func (l *defaultLogger) Timed() Logger {
|
|
return l.With(LogContext{
|
|
timed: time.Now(),
|
|
})
|
|
}
|
|
|
|
func (l *defaultLogger) Debugf(format string, args ...any) {
|
|
measure(l.logContext)
|
|
message := fmt.Sprintf(format, args...)
|
|
l.logAPI.LogDebug(message, toKeyValuePairs(l.logContext)...)
|
|
}
|
|
|
|
func (l *defaultLogger) Errorf(format string, args ...any) {
|
|
measure(l.logContext)
|
|
message := fmt.Sprintf(format, args...)
|
|
l.logAPI.LogError(message, toKeyValuePairs(l.logContext)...)
|
|
}
|
|
|
|
func (l *defaultLogger) Infof(format string, args ...any) {
|
|
measure(l.logContext)
|
|
message := fmt.Sprintf(format, args...)
|
|
l.logAPI.LogInfo(message, toKeyValuePairs(l.logContext)...)
|
|
}
|
|
|
|
func (l *defaultLogger) Warnf(format string, args ...any) {
|
|
measure(l.logContext)
|
|
message := fmt.Sprintf(format, args...)
|
|
l.logAPI.LogWarn(message, toKeyValuePairs(l.logContext)...)
|
|
}
|