summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-02-07 09:35:58 -0800
committerGitHub <noreply@github.com>2017-02-07 09:35:58 -0800
commit9dc76c18231f158ab71dfcfae2f1659a4f2a5396 (patch)
tree57a46a30e52e9f955f4d74d93fc6153640fbecc2 /utils/config.go
parentba18374bd1b2644e577247204fad17dd52913b9b (diff)
downloadchat-9dc76c18231f158ab71dfcfae2f1659a4f2a5396.tar.gz
chat-9dc76c18231f158ab71dfcfae2f1659a4f2a5396.tar.bz2
chat-9dc76c18231f158ab71dfcfae2f1659a4f2a5396.zip
Implement PUT /users/{user_id}/password endpoint for APIv4 (#5243)
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/config.go b/utils/config.go
index 243e2b984..a1f647b3f 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -68,7 +68,7 @@ func FindDir(dir string) string {
func DisableDebugLogForTest() {
if l4g.Global["stdout"] != nil {
originalDisableDebugLvl = l4g.Global["stdout"].Level
- l4g.Global["stdout"].Level = l4g.WARNING
+ l4g.Global["stdout"].Level = l4g.ERROR
}
}