| 123456789101112131415 |
- package fslog
- import (
- "go.uber.org/zap/zapcore"
- "testing"
- )
- func TestFSLogInstanceToConsole(t *testing.T) {
- LoggerLever = zapcore.DebugLevel
- Error("demo", "TestFSLogInstanceToConsole", "test", "error test")
- Debug("demo", "TestFSLogInstanceToConsole", "test", "debug test")
- Info("demo", "TestFSLogInstanceToConsole", "test", "info test")
- Warning("demo", "TestFSLogInstanceToConsole", "test", "warning test")
- }
|