Skip to content

Commit

Permalink
change from logger.warning to logger.debug to reduce pipestat verbosi…
Browse files Browse the repository at this point in the history
…ty in terminal
  • Loading branch information
donaldcampbelljr committed Jun 3, 2024
1 parent 936bb10 commit b86e112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipestat/backends/db_backend/dbbackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(
"""

super().__init__(pipeline_type)
_LOGGER.warning(f"Initializing DBBackend for pipeline '{pipeline_name}'")
_LOGGER.debug(f"Initializing DBBackend for pipeline '{pipeline_name}'")
self.pipeline_name = pipeline_name
self.pipeline_type = pipeline_type or "sample"
self.record_identifier = record_identifier
Expand Down
2 changes: 1 addition & 1 deletion pipestat/backends/file_backend/filebackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(
"""
super().__init__(pipeline_type)
_LOGGER.warning("Initialize FileBackend")
_LOGGER.debug("Initialize FileBackend")

self.results_file_path = results_file_path
self.pipeline_name = pipeline_name
Expand Down

0 comments on commit b86e112

Please sign in to comment.