Skip to content

Commit

Permalink
change logging.yml default
Browse files Browse the repository at this point in the history
Signed-off-by: Nok <[email protected]>
  • Loading branch information
noklam committed Feb 27, 2024
1 parent be3d28d commit 65cf2a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions kedro/framework/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ def configure_project(package_name: str) -> None:
global PACKAGE_NAME # noqa: PLW0603
PACKAGE_NAME = package_name

if PACKAGE_NAME:
LOGGING.set_project_logging(PACKAGE_NAME)
# if PACKAGE_NAME:
# LOGGING.set_project_logging(PACKAGE_NAME)


def configure_logging(logging_config: dict[str, Any]) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ formatters:
handlers:
console:
class: logging.StreamHandler
level: INFO
formatter: simple
stream: ext://sys.stdout

Expand All @@ -32,12 +31,13 @@ handlers:
# See https://docs.kedro.org/en/stable/logging/logging.html#project-side-logging-configuration
# tracebacks_show_locals: False

loggers:
kedro:
level: INFO
# loggers:
# kedro:
# level: INFO

{{ cookiecutter.python_package }}:
level: INFO
# {{ cookiecutter.python_package }}:
# level: INFO

root:
handlers: [rich, info_file_handler]
level: INFO

0 comments on commit 65cf2a0

Please sign in to comment.