Skip to content

Commit

Permalink
Remove temporary Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge committed Jul 28, 2023
1 parent 3d64384 commit e436b48
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gusto/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ def __setattr__(self, name, value):
AttributeError: if the :class:`Configuration` object does not have
this attribute pre-defined.
"""
if name == 'log_level':
logger.warning("Set log level with environment variables, see `logging.py` for details")
raise ValueError("Log level in configuration (temporary error)")
if not hasattr(self, name):
raise AttributeError("'%s' object has no attribute '%s'" % (type(self).__name__, name))

Expand Down

0 comments on commit e436b48

Please sign in to comment.