Remove print statements

This commit is contained in:
amcmanu3 2023-01-30 18:35:04 -05:00
parent e43c63a8b7
commit 82dc20e94a

View File

@ -101,9 +101,8 @@ class ServersController(metaclass=Singleton):
server_instance: ServerInstance = ServersController().get_server_instance_by_id(
server_obj.server_id
)
print("before update", server_instance.server_path)
server_instance.update_server_instance()
print("after update", server_instance.server_path)
return ret
def get_history_stats(self, server_id, days):