aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--models/user.go2
-rw-r--r--modules/context/context.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/models/user.go b/models/user.go
index 91aff928..f6697e38 100644
--- a/models/user.go
+++ b/models/user.go
@@ -373,7 +373,7 @@ func (u *User) UploadAvatar(data []byte) error {
// DeleteAvatar deletes the user's custom avatar.
func (u *User) DeleteAvatar() error {
- log.Trace("DeleteAvatar[%d]: %s", u.ID, u.CustomAvatarPath())
+ log.Trace("DeleteAvatar [%d]: %s", u.ID, u.CustomAvatarPath())
os.Remove(u.CustomAvatarPath())
u.UseCustomAvatar = false
diff --git a/modules/context/context.go b/modules/context/context.go
index 79214856..f6f2756a 100644
--- a/modules/context/context.go
+++ b/modules/context/context.go
@@ -94,7 +94,7 @@ func (ctx *Context) Handle(status int, title string, err error) {
ctx.Data["Title"] = "Page Not Found"
case 500:
ctx.Data["Title"] = "Internal Server Error"
- log.Error(4, "%s: %v", title, err)
+ log.Error(2, "%s: %v", title, err)
if !setting.ProdMode || (ctx.IsSigned && ctx.User.IsAdmin) {
ctx.Data["ErrorMsg"] = err
}