Skip to content

Commit

Permalink
fix(serializer): reduce log level to debug on failed serialization (#991
Browse files Browse the repository at this point in the history
)
  • Loading branch information
hassiebp authored Nov 5, 2024
1 parent 016055e commit 16453f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langfuse/serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def default(self, obj: Any):

except Exception as e:
print(obj.__dict__)
logger.warning(
logger.debug(
f"Serialization failed for object of type {type(obj).__name__}",
exc_info=e,
)
Expand Down

0 comments on commit 16453f1

Please sign in to comment.