12 lines
266 B
Go
12 lines
266 B
Go
package dlog
|
|
|
|
const (
|
|
// CallerUnknown returned when caller isn't determined
|
|
CallerUnknown = "UNKNOWN"
|
|
|
|
// StateEnabled is to check if dlog.State enabled
|
|
StateEnabled = "enabled"
|
|
// StateDisabled is to check if dlog.State disabled
|
|
StateDisabled = "disabled"
|
|
)
|