From e5d762da381134be8843ee1d0ee183e61de51d8a Mon Sep 17 00:00:00 2001 From: downtownallday Date: Fri, 19 Feb 2021 05:22:35 -0500 Subject: [PATCH] Don't report the api key to syslog --- management/daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/management/daemon.py b/management/daemon.py index 45827018..631f9181 100755 --- a/management/daemon.py +++ b/management/daemon.py @@ -734,7 +734,8 @@ if __name__ == '__main__': # For testing in the browser, you can copy the API key that's output to the # debug console and enter that as the username - app.logger.info('API key: ' + auth_service.key) + if app.debug: + app.logger.info('API key: ' + auth_service.key) # Start the application server. Listens on 127.0.0.1 (IPv4 only). app.run(port=10222)