We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33475e commit a6ef70fCopy full SHA for a6ef70f
1 file changed
langfuse/decorators/langfuse_decorator.py
@@ -1110,7 +1110,9 @@ def auth_check(self) -> bool:
1110
try:
1111
return self.client_instance.auth_check()
1112
except Exception as e:
1113
- self._log.error("No Langfuse object found in the current context", e)
+ self._log.error(
1114
+ "No Langfuse object found in the current context", exc_info=e
1115
+ )
1116
1117
return False
1118
0 commit comments