Skip to content

Commit

Permalink
fix(app): use debug() for label error (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Oct 17, 2024
1 parent 645c372 commit 3881040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/fal/src/fal/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def _set_logger_labels(
code = await res.code()
assert str(code) == "StatusCode.OK"
except BaseException:
logger.exception("Failed to set logger labels")
logger.debug("Failed to set logger labels", exc_info=True)


def wrap_app(cls: type[App], **kwargs) -> fal.api.IsolatedFunction:
Expand Down

0 comments on commit 3881040

Please sign in to comment.