We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2335a commit bfc0078Copy full SHA for bfc0078
bumpchanges/logging.py
@@ -42,9 +42,9 @@ def setup_logging():
42
handler = logging.StreamHandler()
43
handler.setLevel(logging.DEBUG)
44
handler.setFormatter(logging.Formatter("%(ghaprefix)s%(message)s"))
45
+ handler.addFilter(GHAFilter())
46
47
# Set these handlers on the root logger of this module
48
root_logger = logging.getLogger(__name__.rpartition('.')[0])
49
root_logger.addHandler(handler)
50
root_logger.setLevel(logging.DEBUG)
- root_logger.addFilter(GHAFilter())
0 commit comments