@@ -22,9 +22,14 @@ import (
22
22
"sync"
23
23
)
24
24
25
+ //nolint:stylecheck
25
26
const (
26
- LogTypeShort = log .LstdFlags
27
- LogType = log .LstdFlags | log .Lshortfile
27
+ LogTypeShort = log .LstdFlags
28
+ LogType = log .LstdFlags | log .Lshortfile
29
+ PKG_SUBPATH = "/pkg/"
30
+ CONTROLLER_SUBPATH = "/controller"
31
+ IC_REPO = "kubernetes-ingress/"
32
+ IC_EE_REPO = "kubernetes-ingress-ee/"
28
33
)
29
34
30
35
type LogLevel int8
@@ -65,18 +70,20 @@ type Logger interface { //nolint:interfacebloat
65
70
Trace (args ... interface {}) // used for heavy duty output everything, not recommended for production
66
71
Debug (args ... interface {}) // used to have detailed output of application flow
67
72
Info (args ... interface {})
73
+ InfoSkipCaller (args ... interface {})
68
74
Warning (args ... interface {})
69
75
Error (args ... interface {})
70
76
Err (args ... interface {}) []error
71
77
Panic (args ... interface {})
72
78
73
- Printf (format string , args ... interface {}) // similar to fmt.SPrintf function
74
- Tracef (format string , args ... interface {}) // similar to fmt.SPrintf function
75
- Debugf (format string , args ... interface {}) // similar to fmt.SPrintf function
76
- Infof (format string , args ... interface {}) // similar to fmt.SPrintf function
77
- Warningf (format string , args ... interface {}) // similar to fmt.SPrintf function
78
- Errorf (format string , args ... interface {}) // similar to fmt.SPrintf function
79
- Panicf (format string , args ... interface {}) // similar to fmt.SPrintf function
79
+ Printf (format string , args ... interface {}) // similar to fmt.SPrintf function
80
+ Tracef (format string , args ... interface {}) // similar to fmt.SPrintf function
81
+ Debugf (format string , args ... interface {}) // similar to fmt.SPrintf function
82
+ Infof (format string , args ... interface {}) // similar to fmt.SPrintf function
83
+ InfoSkipCallerf (format string , args ... interface {}) // similar to fmt.SPrintf function
84
+ Warningf (format string , args ... interface {}) // similar to fmt.SPrintf function
85
+ Errorf (format string , args ... interface {}) // similar to fmt.SPrintf function
86
+ Panicf (format string , args ... interface {}) // similar to fmt.SPrintf function
80
87
81
88
SetLevel (level LogLevel )
82
89
ShowFilename (show bool )
@@ -157,7 +164,15 @@ func (l *logger) fieldsAsString() string {
157
164
return fields .String ()
158
165
}
159
166
167
+ func (l * logger ) logSkipCaller (logType string , data ... interface {}) {
168
+ l .logImp (logType , 2 , data ... )
169
+ }
170
+
160
171
func (l * logger ) log (logType string , data ... interface {}) {
172
+ l .logImp (logType , 0 , data ... )
173
+ }
174
+
175
+ func (l * logger ) logImp (logType string , skipMore int , data ... interface {}) {
161
176
if ! l .FileName {
162
177
for _ , d := range data {
163
178
if d == nil {
@@ -167,50 +182,46 @@ func (l *logger) log(logType string, data ...interface{}) {
167
182
}
168
183
return
169
184
}
170
- _ , file , no , ok := runtime .Caller (3 )
185
+ _ , file , no , ok := runtime .Caller (3 + skipMore )
171
186
if ok {
172
- f := strings .Split (file , "/" )
173
- var file1 string
174
- if f [len (f )- 2 ] == "controller" || f [len (f )- 2 ] == "kubernetes-ingress" {
175
- file1 = f [len (f )- 1 ]
176
- } else {
177
- file1 = fmt .Sprintf ("%s/%s" , f [len (f )- 2 ], f [len (f )- 1 ])
178
- }
179
- // file1 := strings.Replace(file, "/src/", "", 1)
180
- for _ , d := range data {
187
+ origin := getFileCaller (file )
188
+
189
+ for _ , d := range data { //nolint:varnamelen
181
190
if d == nil {
182
191
continue
183
192
}
184
193
185
194
if logType == "" {
186
- log .Printf ("%s:%d %s %s\n " , file1 , no , l .fieldsAsString (), d )
195
+ log .Printf ("%s:%d %s %s\n " , origin , no , l .fieldsAsString (), d )
187
196
} else {
188
- log .Printf ("%s%s:%d %s %s\n " , logType , file1 , no , l .fieldsAsString (), d )
197
+ log .Printf ("%s%s:%d %s %s\n " , logType , origin , no , l .fieldsAsString (), d )
189
198
}
190
199
}
191
200
}
192
201
}
193
202
203
+ func (l * logger ) logfSkipCallerf (logType string , format string , data ... interface {}) {
204
+ l .logfImpl (logType , format , 2 , data ... )
205
+ }
206
+
194
207
func (l * logger ) logf (logType string , format string , data ... interface {}) {
208
+ l .logfImpl (logType , format , 0 , data ... )
209
+ }
210
+
211
+ func (l * logger ) logfImpl (logType string , format string , skipMore int , data ... interface {}) {
195
212
line := fmt .Sprintf (format , data ... )
196
213
if ! l .FileName {
197
214
log .Printf ("%s%s\n " , logType , line )
198
215
return
199
216
}
200
- _ , file , no , ok := runtime .Caller (2 )
217
+ _ , file , no , ok := runtime .Caller (3 + skipMore )
218
+
201
219
if ok {
202
- f := strings .Split (file , "/" )
203
- var file1 string
204
- if f [len (f )- 2 ] == "controller" || f [len (f )- 2 ] == "kubernetes-ingress" {
205
- file1 = f [len (f )- 1 ]
206
- } else {
207
- file1 = fmt .Sprintf ("%s/%s" , f [len (f )- 2 ], f [len (f )- 1 ])
208
- }
209
- // file1 := strings.Replace(file, "/src/", "", 1)
220
+ origin := getFileCaller (file )
210
221
if logType == "" {
211
- log .Printf ("%s:%d %s %s\n " , file1 , no , l .fieldsAsString (), line )
222
+ log .Printf ("%s:%d %s %s\n " , origin , no , l .fieldsAsString (), line )
212
223
} else {
213
- log .Printf ("%s%s:%d %s %s\n " , logType , file1 , no , l .fieldsAsString (), line )
224
+ log .Printf ("%s%s:%d %s %s\n " , logType , origin , no , l .fieldsAsString (), line )
214
225
}
215
226
}
216
227
}
@@ -253,12 +264,24 @@ func (l *logger) Info(args ...interface{}) {
253
264
}
254
265
}
255
266
267
+ func (l * logger ) InfoSkipCaller (args ... interface {}) {
268
+ if l .Level >= Info {
269
+ l .logSkipCaller ("INFO " , args ... )
270
+ }
271
+ }
272
+
256
273
func (l * logger ) Infof (format string , args ... interface {}) {
257
274
if l .Level >= Info {
258
275
l .logf ("INFO " , format , args ... )
259
276
}
260
277
}
261
278
279
+ func (l * logger ) InfoSkipCallerf (format string , args ... interface {}) {
280
+ if l .Level >= Info {
281
+ l .logfSkipCallerf ("INFO " , format , args ... )
282
+ }
283
+ }
284
+
262
285
func (l * logger ) Warning (args ... interface {}) {
263
286
if l .Level >= Warning {
264
287
l .log ("WARNING " , args ... )
@@ -329,3 +352,37 @@ func (l *logger) HandleWarningHeader(code int, agent string, text string) {
329
352
}
330
353
l .logf ("K8s API " , " %d %s %s" , code , agent , text )
331
354
}
355
+
356
+ func getFileCaller (path string ) string {
357
+ pkgIndex := strings .Index (path , PKG_SUBPATH )
358
+ icIndex := strings .Index (path , CONTROLLER_SUBPATH )
359
+
360
+ var origin string
361
+ switch {
362
+ case pkgIndex != - 1 :
363
+ origin = path [pkgIndex + len (PKG_SUBPATH ):]
364
+ case icIndex != - 1 :
365
+ origin = path [icIndex + len (CONTROLLER_SUBPATH ):]
366
+ default :
367
+ offset := 0
368
+ // do we have IC repo in path ?
369
+ repoIndex := strings .Index (path , IC_REPO )
370
+ if repoIndex == - 1 {
371
+ // if not do we have IC EE repo in path ?
372
+ repoIndex = strings .Index (path , IC_EE_REPO )
373
+ if repoIndex == - 1 {
374
+ // if not start reset the repo index to 0
375
+ repoIndex = 0
376
+ } else {
377
+ // we have IC EE repo in path
378
+ offset = len (IC_EE_REPO )
379
+ }
380
+ } else {
381
+ // we have IC repo in path.
382
+ offset = len (IC_REPO )
383
+ }
384
+ idx := repoIndex + offset
385
+ origin = path [idx :]
386
+ }
387
+ return origin
388
+ }
0 commit comments