Archived
1
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
fwzookeeper/vendor/github.com/kirillDanshin/dlog/consts.go
2018-11-29 20:32:51 +04:00

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"
)