MCPcopy
hub / github.com/cayleygraph/cayley / stdlog

Struct stdlog

clog/clog.go:83–85  ·  view source on GitHub ↗

stdlog wraps the standard library logger.

Source from the content-addressed store, hash-verified

81
82// stdlog wraps the standard library logger.
83type stdlog struct {
84 verbosity int
85}
86
87func (stdlog) Infof(format string, args ...interface{}) { log.Printf(format, args...) }
88func (stdlog) Warningf(format string, args ...interface{}) { log.Printf("WARN: "+format, args...) }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected