mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Transit panic from debug to error * Parse plugin's StdErr and output panic to the mlog.Error * Add unit tests * Change log test * Remove buffer from logger * Remove 'panic' string filter * Change *Buffer to io.Writer Co-authored-by: mattermod <mattermod@users.noreply.github.com>
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package mlog
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
"testing"
|
|
|
|
"go.uber.org/zap"
|
|
"go.uber.org/zap/zapcore"
|
|
)
|
|
|
|
// testingWriter is an io.Writer that writes through t.Log
|
|
type testingWriter struct {
|
|
tb testing.TB
|
|
}
|
|
|
|
func (tw *testingWriter) Write(b []byte) (int, error) {
|
|
tw.tb.Log(strings.TrimSpace(string(b)))
|
|
return len(b), nil
|
|
}
|
|
|
|
// NewTestingLogger creates a Logger that proxies logs through a testing interface.
|
|
// This allows tests that spin up App instances to avoid spewing logs unless the test fails or -verbose is specified.
|
|
func NewTestingLogger(tb testing.TB, writer io.Writer) *Logger {
|
|
logWriter := &testingWriter{tb}
|
|
multiWriter := io.MultiWriter(logWriter, writer)
|
|
logWriterSync := zapcore.AddSync(multiWriter)
|
|
|
|
testingLogger := &Logger{
|
|
consoleLevel: zap.NewAtomicLevelAt(getZapLevel("debug")),
|
|
fileLevel: zap.NewAtomicLevelAt(getZapLevel("info")),
|
|
}
|
|
|
|
logWriterCore := zapcore.NewCore(makeEncoder(true), logWriterSync, testingLogger.consoleLevel)
|
|
|
|
testingLogger.zap = zap.New(logWriterCore,
|
|
zap.AddCaller(),
|
|
)
|
|
return testingLogger
|
|
}
|