diff --git a/camisatoshi_wordpress_reports/controllers.py b/camisatoshi_wordpress_reports/controllers.py index 25c3d9d..92a7e4c 100644 --- a/camisatoshi_wordpress_reports/controllers.py +++ b/camisatoshi_wordpress_reports/controllers.py @@ -22,14 +22,14 @@ logger = logging.getLogger() def check_health(): logger.info( - f"Connecting to the configured woocomerce at {API_CONFIG['URL']}" + f"Connecting to the configured WooCommerce at {API_CONFIG['URL']}" ) try: api_reported_version = WC_API.get("").json()["namespace"] except: raise ConnectionError( - "There was an issue connecting to the woocomerce API." + "There was an issue connecting to the WooCommerce API." ) logger.info(f"Informed version of the API: {API_CONFIG['VERSION']}")