blob: 85f90a59867e0cdde8363294f102a3c90b05d862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package logger
// Modes specifies the logging mode.
type Modes struct {
Debug bool
logToFile bool
logToStdout bool
Nothing bool
Quiet bool
Server bool
Trace bool
UnitTest bool
}
|