From d83b522d5091720bdbe699ea7a6c3454febce7b7 Mon Sep 17 00:00:00 2001 From: ljf Date: Wed, 29 Aug 2018 00:56:24 +0200 Subject: [PATCH] [fix] Remove some nginx debug log --- helpers.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/helpers.lua b/helpers.lua index e32bb9b..a384efb 100644 --- a/helpers.lua +++ b/helpers.lua @@ -887,7 +887,6 @@ end -- because ldap doesn't support anything stronger than sha1 function hash_password(password) local hashed_password = secure_cmd_password("mkpasswd --method=sha-512 | tee -a %s", password, 0) - ngx.log(ngx.STDERR, hashed_password) hashed_password = "{CRYPT}"..hashed_password return hashed_password end