From bffce08c93e87b3dafe017266886bdc8ed5c7440 Mon Sep 17 00:00:00 2001 From: PuffDip Date: Fri, 25 May 2018 13:13:25 +0200 Subject: [PATCH] Made status check readable in terminal to check if its working --- src/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__main__.py b/src/__main__.py index 1527442..4860c8a 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -79,7 +79,7 @@ class SebiMachine(commands.Bot, LoadConfig, Loggable): # Request url async with session.get('http://chillout.ueuo.com/') as request: # print the response status - self.logger.debug(f'http://chillout.ueuo.com/ status : {request.status}') + self.logger.info(f'http://chillout.ueuo.com/ status : {request.status}') await asyncio.sleep(3600) # sleep for one hour async def on_ready(self):