mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 15:00:54 +00:00
for better performance
This commit is contained in:
parent
f02ff0420d
commit
52a0b657b7
@ -597,6 +597,9 @@ func formatLog(f interface{}, v ...interface{}) string {
|
|||||||
switch f.(type) {
|
switch f.(type) {
|
||||||
case string:
|
case string:
|
||||||
msg = f.(string)
|
msg = f.(string)
|
||||||
|
if len(v) == 0 {
|
||||||
|
return msg
|
||||||
|
}
|
||||||
if strings.Contains(msg, "%") && !strings.Contains(msg, "%%") {
|
if strings.Contains(msg, "%") && !strings.Contains(msg, "%%") {
|
||||||
//format string
|
//format string
|
||||||
} else {
|
} else {
|
||||||
@ -604,7 +607,11 @@ func formatLog(f interface{}, v ...interface{}) string {
|
|||||||
msg += strings.Repeat(" %v", len(v))
|
msg += strings.Repeat(" %v", len(v))
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
msg = fmt.Sprint(f) + strings.Repeat(" %v", len(v))
|
msg = fmt.Sprint(f)
|
||||||
|
if len(v) == 0 {
|
||||||
|
return msg
|
||||||
|
}
|
||||||
|
msg += strings.Repeat(" %v", len(v))
|
||||||
}
|
}
|
||||||
return fmt.Sprintf(msg, v...)
|
return fmt.Sprintf(msg, v...)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user