Use a variable but a function for IsProd because of a slight performance increment (#17368)
This commit is contained in:
parent
0208ea0248
commit
f494776931
12 changed files with 19 additions and 22 deletions
|
@ -80,7 +80,7 @@ func fail(userMessage, logMessage string, args ...interface{}) error {
|
|||
fmt.Fprintln(os.Stderr, "Gitea:", userMessage)
|
||||
|
||||
if len(logMessage) > 0 {
|
||||
if !setting.IsProd() {
|
||||
if !setting.IsProd {
|
||||
fmt.Fprintf(os.Stderr, logMessage+"\n", args...)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue