Remove unnecessary console.debug's

This commit is contained in:
luukas 2021-07-30 19:27:48 +03:00
parent 7acf095463
commit f5b6583dbf
2 changed files with 0 additions and 4 deletions

View File

@ -211,7 +211,6 @@ class TasksManager:
time.sleep(8)
def log_watcher(self):
console.debug('in log_watcher')
helper.check_for_old_logs(db_helper)
schedule.every(6).hours.do(lambda: helper.check_for_old_logs(db_helper)).tag('log-mgmt')

View File

@ -107,8 +107,6 @@ class ServerHandler(BaseHandler):
name_counter += 1
new_server_name = server_data.get('server_name') + " (Copy {})".format(name_counter)
console.debug('new_server_name: "{}"'.format(new_server_name))
new_server_uuid = helper.create_uuid()
while os.path.exists(os.path.join(helper.servers_dir, new_server_uuid)):
new_server_uuid = helper.create_uuid()
@ -145,7 +143,6 @@ class ServerHandler(BaseHandler):
}).execute()
self.controller.init_all_servers()
console.debug('initted all servers')
return