Browse Source

Make testing logger that doesn't write to stdout (#2997)

pull/3004/head
Dev Ojha 6 years ago
committed by Anton Kaliaev
parent
commit
df32ea4be5
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      libs/log/testing_logger.go

+ 12
- 1
libs/log/testing_logger.go View File

@ -1,6 +1,7 @@
package log
import (
"io"
"os"
"testing"
@ -19,12 +20,22 @@ var (
// inside a test (not in the init func) because
// verbose flag only set at the time of testing.
func TestingLogger() Logger {
return TestingLoggerWithOutput(os.Stdout)
}
// TestingLoggerWOutput returns a TMLogger which writes to (w io.Writer) if testing being run
// with the verbose (-v) flag, NopLogger otherwise.
//
// Note that the call to TestingLoggerWithOutput(w io.Writer) must be made
// inside a test (not in the init func) because
// verbose flag only set at the time of testing.
func TestingLoggerWithOutput(w io.Writer) Logger {
if _testingLogger != nil {
return _testingLogger
}
if testing.Verbose() {
_testingLogger = NewTMLogger(NewSyncWriter(os.Stdout))
_testingLogger = NewTMLogger(NewSyncWriter(w))
} else {
_testingLogger = NewNopLogger()
}


Loading…
Cancel
Save