print error log to client side when dev mode
This commit is contained in:
parent
0128036514
commit
21ad4bf0fe
1 changed files with 3 additions and 0 deletions
|
@ -76,6 +76,9 @@ func fail(userMessage, logMessage string, args ...interface{}) {
|
|||
fmt.Fprintln(os.Stderr, "Gogs:", userMessage)
|
||||
|
||||
if len(logMessage) > 0 {
|
||||
if !setting.ProdMode {
|
||||
fmt.Fprintf(os.Stderr, logMessage, args...)
|
||||
}
|
||||
log.GitLogger.Fatal(3, logMessage, args...)
|
||||
return
|
||||
}
|
||||
|
|
Reference in a new issue