MCPcopy
hub / github.com/safing/portmaster / Info

Function Info

base/log/input.go:115–119  ·  view source on GitHub ↗

Info is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen.

(msg string)

Source from the content-addressed store, hash-verified

113
114// Info is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen.
115func Info(msg string) {
116 if fastcheck(InfoLevel) {
117 log(InfoLevel, msg, nil)
118 }
119}
120
121// Infof is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen.
122func Infof(format string, things ...interface{}) {

Callers 15

InitializeMethod · 0.92
restartFunction · 0.92
loadResolversFunction · 0.92
clearNameCacheHandlerFunction · 0.92
createKextServiceFunction · 0.92
updateListIndexFunction · 0.92
startAppriseFunction · 0.92
observerWorkerFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
startFunction · 0.92
LoginFunction · 0.92

Calls 2

fastcheckFunction · 0.85
logFunction · 0.85

Tested by 1

TestLoggingFunction · 0.56