MCPcopy
hub / github.com/oauth2-proxy/oauth2-proxy / Printf

Function Printf

pkg/logger/logger.go:496–498  ·  view source on GitHub ↗

Printf calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Printf.

(format string, v ...interface{})

Source from the content-addressed store, hash-verified

494// Printf calls Output to print to the standard logger.
495// Arguments are handled in the manner of fmt.Printf.
496func Printf(format string, v ...interface{}) {
497 std.Output(DEFAULT, 2, fmt.Sprintf(format, v...))
498}
499
500// Println calls Output to print to the standard logger.
501// Arguments are handled in the manner of fmt.Println.

Callers 15

NewOAuthProxyFunction · 0.92
buildPreAuthChainFunction · 0.92
buildRoutesAllowlistFunction · 0.92
buildAPIRoutesFunction · 0.92
SignInPageMethod · 0.92
SignInMethod · 0.92
UserInfoMethod · 0.92
ProxyMethod · 0.92
NewUserMapFunction · 0.92
TestBasicAuthPasswordFunction · 0.92
loadConfigurationFunction · 0.92
hasOrgMethod · 0.92

Calls 1

OutputMethod · 0.80

Tested by 1

TestBasicAuthPasswordFunction · 0.74