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

Method Debug

pkg/util/log/file_logger.go:105–114  ·  view source on GitHub ↗
(args ...interface{})

Source from the content-addressed store, hash-verified

103}
104
105func (f *fileLogger) Debug(args ...interface{}) {
106 f.m.Lock()
107 defer f.m.Unlock()
108
109 if f.level < logrus.DebugLevel {
110 return
111 }
112
113 f.logger.Debug(f.addPrefixes(stripEscapeSequences(fmt.Sprint(args...))))
114}
115
116func (f *fileLogger) Debugf(format string, args ...interface{}) {
117 f.m.Lock()

Callers 8

PrintMethod · 0.95
PrintPodInfoMethod · 0.45
RevertReplacePodMethod · 0.45
ReplacePodMethod · 0.45
startSyncMethod · 0.45
StartStreamFunction · 0.45
StartNewDependenciesMethod · 0.45
DebugfMethod · 0.45

Calls 4

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

Tested by

no test coverage detected