MCPcopy Index your code
hub / github.com/devspace-sh/devspace / Debugf

Method Debugf

pkg/util/log/file_logger.go:116–125  ·  view source on GitHub ↗
(format string, args ...interface{})

Source from the content-addressed store, hash-verified

114}
115
116func (f *fileLogger) Debugf(format string, args ...interface{}) {
117 f.m.Lock()
118 defer f.m.Unlock()
119
120 if f.level < logrus.DebugLevel {
121 return
122 }
123
124 f.logger.Debug(f.addPrefixes(stripEscapeSequences(fmt.Sprintf(format, args...))))
125}
126
127func (f *fileLogger) Info(args ...interface{}) {
128 f.m.Lock()

Callers 15

PrintfMethod · 0.95
DeployMethod · 0.45
internalDeployMethod · 0.45
applyDeployPatchesMethod · 0.45
StartLogsFunction · 0.45
NewReverseCommandsServerFunction · 0.45
getCommandMethod · 0.45
exitWithErrorMethod · 0.45
InjectDevSpaceHelperFunction · 0.45
downloadSyncHelperFunction · 0.45
StartTerminalFunction · 0.45
startTerminalFunction · 0.45

Calls 5

addPrefixesMethod · 0.95
stripEscapeSequencesFunction · 0.85
LockMethod · 0.80
UnlockMethod · 0.80
DebugMethod · 0.45

Tested by

no test coverage detected