github.com/onflow/flow-go@v0.33.17/utils/logging/consts.go (about) 1 package logging 2 3 const ( 4 // KeySuspicious is a logging label that is used to flag the log event as suspicious behavior 5 // This is used to add an easily searchable label to the log event 6 KeySuspicious = "suspicious" 7 8 // KeyNetworkingSecurity is a logging label that is used to flag the log event as a networking security issue. 9 // This is used to add an easily searchable label to the log events. 10 KeyNetworkingSecurity = "networking-security" 11 12 // KeyLoad is a logging label that is used to flag the log event as a load issue. 13 KeyLoad = "load" 14 )