From f6eaea5e129c0c6690107e180f09d618af768804 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 16 Jan 2024 17:09:03 +0100 Subject: [PATCH] Try and try again --- jupyter/base/values/values.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/jupyter/base/values/values.yaml b/jupyter/base/values/values.yaml index 3d94c3f..99a2a3e 100644 --- a/jupyter/base/values/values.yaml +++ b/jupyter/base/values/values.yaml @@ -223,7 +223,8 @@ hub: @authenticated def get(self): - app_log.debug("DEBUG: In auth get") + app_log.error("DEBUG: In auth get") + print("DEBUG: In auth get") user_model = self.get_current_user() user_model = {'helloooooo': 'hej'} self.set_header('content-type', 'application/json') @@ -232,13 +233,15 @@ hub: class PingHandler(RequestHandler): def get(self): - app_log.debug("DEBUG: In get") + app_log.error("DEBUG: In get") + print("DEBUG: In ping get") self.set_header('content-type', 'application/json') self.write(json.dumps({'ping': 1})) def main(): - app_log.debug("DEBUG: In main") + app_log.error("DEBUG: In main") + print("DEBUG: In main") tornado.options.parse_command_line() app = Application([ (os.environ['JUPYTERHUB_SERVICE_PREFIX'] + 'tokens', RefreshHandler),