Skip to content

Commit

Permalink
Fix broken daiquiri log path
Browse files Browse the repository at this point in the history
  • Loading branch information
servilla committed Aug 24, 2024
1 parent 2ed74e9 commit 0fdd41c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions webapp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@
from views import index


daiquiri.setup(level=Config.LOG_LEVEL,
outputs=(daiquiri.output.File(Config.LOG_PATH), "stdout",))
daiquiri.setup(
level=Config.LOG_LEVEL,
outputs=(
daiquiri.output.File(Config.LOG_PATH / "gatekeeper.log"),
'stdout',
),
)

logger = daiquiri.getLogger(__name__)


Expand Down

0 comments on commit 0fdd41c

Please sign in to comment.