File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class ConsoleSpanExporter(TracingExporter):
22
22
def export (self , items : list [Trace | Span [Any ]]) -> None :
23
23
for item in items :
24
24
if isinstance (item , Trace ):
25
- print (f"[Exporter] Export trace_id={ item .trace_id } , name={ item .name } , " )
25
+ print (f"[Exporter] Export trace_id={ item .trace_id } , name={ item .name } " )
26
26
else :
27
27
print (f"[Exporter] Export span: { item .export ()} " )
28
28
@@ -121,7 +121,7 @@ def export(self, items: list[Trace | Span[Any]]) -> None:
121
121
logger .debug (f"Exported { len (items )} items" )
122
122
return
123
123
124
- # If the response is a client error (4xx), we wont retry
124
+ # If the response is a client error (4xx), we won't retry
125
125
if 400 <= response .status_code < 500 :
126
126
logger .error (
127
127
f"[non-fatal] Tracing client error { response .status_code } : { response .text } "
You can’t perform that action at this time.
0 commit comments