Skip to content

Commit

Permalink
Merge pull request #821 from hotosm/fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
nrjadkry authored Sep 11, 2023
2 parents 6bf8b45 + c4276c7 commit 0d51e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def get_logger():
serialize=True,
rotation="00:00",
retention="10 days",
filter=lambda record: record["extra"]["task"] == "create_project",
filter=lambda record: "task" in record["extra"] and record["extra"]["task"] == "create_project"
)

api = get_application()
Expand Down

0 comments on commit 0d51e3d

Please sign in to comment.