Skip to content

Commit

Permalink
chore: logging leve at INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
millerjp committed Oct 28, 2024
1 parent a743ae8 commit 0c03600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axonops/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
import sys


def setup_logger(name='AxonOpsLogger', level=logging.DEBUG):
def setup_logger(name='AxonOpsLogger', level=logging.INFO):
# Create a custom logger
logger = logging.getLogger(name)
logger.setLevel(level)

# Create handlers
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(logging.DEBUG)
console_handler.setLevel(level)

# Create formatters and add them to handlers
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(funcName)s - %(message)s')
Expand Down

0 comments on commit 0c03600

Please sign in to comment.