diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 2d79357d..93869299 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -980,7 +980,7 @@ class AppWindow(object): self.login() except companion.ServerConnectionError as e: - logger.debug(f'Exception while contacting server: {e}') + logger.warning(f'Exception while contacting server: {e}') err = self.status['text'] = str(e) play_bad = True diff --git a/companion.py b/companion.py index 1095350a..f8cf6c26 100644 --- a/companion.py +++ b/companion.py @@ -542,7 +542,7 @@ class Session(object): r = self.session.get(self.server + endpoint, timeout=timeout) # type: ignore except requests.ConnectionError as e: - logger.debug(f'Unable to resolve name for CAPI: {e} (for request: {endpoint})') + logger.warning(f'Unable to resolve name for CAPI: {e} (for request: {endpoint})') raise ServerConnectionError(f'Unable to connect to endpoint {endpoint}') from e except Exception as e: