(t *testing.T)
| 40 | } |
| 41 | |
| 42 | func TestLoggerInit(t *testing.T) { |
| 43 | logger := tlog.NewSimpleLogger() |
| 44 | logger.Init() |
| 45 | |
| 46 | assert.Assert(t, tlog.App.GetLevel() != zerolog.Disabled) |
| 47 | } |
| 48 | |
| 49 | func TestLoggerWithDisabledStreams(t *testing.T) { |
| 50 | cfg := config.LogConfig{ |
nothing calls this directly
no test coverage detected