Skip to content

Commit

Permalink
Logging module renamed to log. (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rius authored Jun 27, 2024
1 parent 8d73952 commit f23c99d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{%- if cookiecutter.sentry_enabled == "True" %}
import sentry_sdk
from sentry_sdk.integrations.fastapi import FastApiIntegration
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.log import LoggingIntegration

{%- if cookiecutter.orm == "sqlalchemy" %}
from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
Expand All @@ -32,7 +32,7 @@
{%- endif %}

{%- if cookiecutter.enable_loguru == "True" %}
from {{cookiecutter.project_name}}.logging import configure_logging
from {{cookiecutter.project_name}}.log import configure_logging

{%- endif %}

Expand Down

0 comments on commit f23c99d

Please sign in to comment.