mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
* Initial test environment implementation * linter pass * wip: update request latency test * bugfixes * Fix logic race in envoy process monitor when canceling context * skip tests using test environment on non-linux
12 lines
307 B
Go
12 lines
307 B
Go
package log
|
|
|
|
import "sync/atomic"
|
|
|
|
var (
|
|
// Debug option to disable the Zap log shim
|
|
DebugDisableZapLogger atomic.Bool
|
|
// Debug option to suppress global warnings
|
|
DebugDisableGlobalWarnings atomic.Bool
|
|
// Debug option to suppress global (non-warning) messages
|
|
DebugDisableGlobalMessages atomic.Bool
|
|
)
|