Skip to content

Commit

Permalink
Patch: Merge pull request #20 from cloudmitigator/dev-bugfix
Browse files Browse the repository at this point in the history
Patch: Fix logging assignment
  • Loading branch information
mcbanderson authored Mar 24, 2020
2 parents 088b6bb + eec4a6a commit 161178e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reflex_core/aws_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
class AWSRule:
""" Generic class for AWS compliance rules """

LOGGER = logging.getLogger().setLevel(LOG_LEVEL)
LOGGER = logging.getLogger()
LOGGER.setLevel(LOG_LEVEL)

def __init__(self, event):
""" Initialize the rule object """
Expand Down

0 comments on commit 161178e

Please sign in to comment.