Skip to content

Commit

Permalink
fix(telemetry): Changed logging level from error to debug to prevent …
Browse files Browse the repository at this point in the history
…extensive output (#806)

Changed logging level from error to debug

Signed-off-by: Elena Khaustova <ymax70rus@gmail.com>
  • Loading branch information
ElenaKhaustova authored Aug 13, 2024
1 parent e5e84e4 commit e717fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kedro-telemetry/kedro_telemetry/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _get_or_create_project_id(pyproject_path: Path) -> str | None:
)
return None
except OSError as exc:
logging.error(f"Failed to read the file: {str(pyproject_path)}.\n{str(exc)}")
logging.debug(f"Failed to read the file: {str(pyproject_path)}.\n{str(exc)}")
return None


Expand Down

0 comments on commit e717fdb

Please sign in to comment.