diff --git a/bin/user/ambientweatherapi.py b/bin/user/ambientweatherapi.py index ae7ac21..83c8e81 100644 --- a/bin/user/ambientweatherapi.py +++ b/bin/user/ambientweatherapi.py @@ -36,6 +36,7 @@ def __init__(self, **stn_dict): rainfile = "%s_%s_rain.txt" % (DRIVER_NAME, DRIVER_VERSION) self.loop_interval = float(stn_dict.get('loop_interval', 60)) self.api_url = stn_dict.get('api_url', 'https://api.ambientweather.net/v1') + log.info('Using API Endpoint: %s' % str(self.api_url)) self.api_key = stn_dict.get('api_key') self.api_app_key = stn_dict.get('api_app_key') self.station_hardware = stn_dict.get('hardware', 'Undefined')