type cloud.google.com/go/logging.Severity

25 uses

	cloud.google.com/go/logging (current package)
		logging.go#L233: 	stdLoggers map[Severity]*log.Logger
		logging.go#L451: 	l.stdLoggers = map[Severity]*log.Logger{}
		logging.go#L469: 	s Severity
		logging.go#L502: type Severity int
		logging.go#L506: 	Default = Severity(logtypepb.LogSeverity_DEFAULT)
		logging.go#L508: 	Debug = Severity(logtypepb.LogSeverity_DEBUG)
		logging.go#L510: 	Info = Severity(logtypepb.LogSeverity_INFO)
		logging.go#L512: 	Notice = Severity(logtypepb.LogSeverity_NOTICE)
		logging.go#L514: 	Warning = Severity(logtypepb.LogSeverity_WARNING)
		logging.go#L516: 	Error = Severity(logtypepb.LogSeverity_ERROR)
		logging.go#L518: 	Critical = Severity(logtypepb.LogSeverity_CRITICAL)
		logging.go#L520: 	Alert = Severity(logtypepb.LogSeverity_ALERT)
		logging.go#L522: 	Emergency = Severity(logtypepb.LogSeverity_EMERGENCY)
		logging.go#L525: var severityName = map[Severity]string{
		logging.go#L538: func (v Severity) String() string {
		logging.go#L549: func ParseSeverity(s string) Severity {
		logging.go#L567: 	Severity Severity
		logging.go#L833: func (l *Logger) StandardLogger(s Severity) *log.Logger { return l.stdLoggers[s] }

	golang.org/x/pkgsite/internal/log
		log.go#L26: 		log(context.Context, logging.Severity, interface{})
		log.go#L49: func getLevel() logging.Severity {
		log.go#L78: func (l *stackdriverLogger) log(ctx context.Context, s logging.Severity, payload interface{}) {
		log.go#L113: func (stdlibLogger) log(ctx context.Context, s logging.Severity, payload interface{}) {
		log.go#L199: func logf(ctx context.Context, s logging.Severity, format string, args []interface{}) {
		log.go#L221: func doLog(ctx context.Context, s logging.Severity, payload interface{}) {
		log.go#L243: func toLevel(v string) logging.Severity {