Skip to content

Commit

Permalink
PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Dec 10, 2024
1 parent c1b1e8d commit beafdc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quartz_solar_forecast/utils/sentry_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os

quartz_solar_forecast_logging = bool(os.getenv("QUARTZ_SOLAR_FORECAST_LOGGING", True))
quartz_solar_forecast_logging = os.getenv("QUARTZ_SOLAR_FORECAST_LOGGING", "True").lower() != "false"

SENTRY_DSN = 'https://[email protected]/4508439933157376'
sentry_sdk.init(
Expand Down

0 comments on commit beafdc7

Please sign in to comment.