fixing windows loggers

This commit is contained in:
2022-01-06 04:16:44 -05:00
parent ef0a4d825d
commit 3d0d420454
4 changed files with 21 additions and 5 deletions

View File

@@ -4,12 +4,14 @@ import (
`os`
`path/filepath`
`regexp`
`r00t2.io/goutils/bitmask`
)
// Flags for logger configuration. These are used internally.
const (
// LogUndefined indicates an undefined Logger type.
LogUndefined types.MaskBit = 1 << iota
LogUndefined bitmask.MaskBit = 1 << iota
// LogWinLogger indicates a WinLogger Logger type (Event Log).
LogWinLogger
// LogFile flags a FileLogger Logger type.