test smart garf and fix weather error log

This commit is contained in:
2026-01-04 06:13:15 -06:00
parent 34f34e3def
commit 68696e25f0
2 changed files with 5 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ class WeatherAPI:
response.raise_for_status()
return await response.json()
except aiohttp.ClientError as e:
logger.error(f"Error fetching weather data for '{location}'")
logger.error(f"Error fetching weather data for '{location}' - {e}")
await ctx.send(f"`Error fetching weather data for '{location}'`")
return None