Skip to content

Commit 4cb8f36

Browse files
committed
restricted secure command from password logging
1 parent 057d1f9 commit 4cb8f36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ee/cli/plugins/secure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ def secure_auth(self):
6868
password=self.app.pargs.user_pass))
6969
Log.info(self, "Successfully changed HTTP authentication"
7070
" username to : {username}"
71-
.format(username=self.app.pargs.user_input))
71+
.format(username=self.app.pargs.user_input), log=False)
7272
Log.info(self, "Successfully changed HTTP authentication"
7373
" password to : {password}"
74-
.format(password=self.app.pargs.user_pass))
74+
.format(password=self.app.pargs.user_pass), log=False)
7575

7676
@expose(hide=True)
7777
def secure_port(self):

0 commit comments

Comments
 (0)