File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/uipath_langchain/tracers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-langchain"
3- version = " 0.0.107 "
3+ version = " 0.0.108 "
44description = " UiPath Langchain"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ async def _worker(self):
138138 f"Error when sending trace: { response } . Body is: { response .text } "
139139 )
140140 except Exception as e :
141- logger .warning (f"Exception when sending trace: { e } ." )
141+ logger .warning (f"Exception when sending trace: { e } " , exc_info = e )
142142
143143 # wait for a bit to ensure all logs are sent
144144 await asyncio .sleep (1 )
@@ -159,7 +159,7 @@ async def _worker(self):
159159 timeout = 10 ,
160160 )
161161 except Exception as e :
162- logger .warning (f"Exception when sending trace: { e } ." )
162+ logger .warning (f"Exception when sending trace: { e } " , exc_info = e )
163163
164164 async def _persist_run (self , run : Run ) -> None :
165165 # Determine if this is a start or end trace based on whether end_time is set
You can’t perform that action at this time.
0 commit comments