File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ impl TimeCollector {
357
357
// incorrect because it will be over-counted.
358
358
Ok ( _) => profile. add_endpoint_count ( endpoint, 1 ) ,
359
359
Err ( err) => {
360
- warn ! ( "failed to add endpoint for span id " { local_root_span_id} ": {err}" )
360
+ debug ! ( "failed to add endpoint for span id \ " {local_root_span_id}\ " : {err}" )
361
361
}
362
362
}
363
363
}
@@ -418,7 +418,9 @@ impl TimeCollector {
418
418
match profile. add_sample ( sample, timestamp) {
419
419
Ok ( _id) => { }
420
420
Err ( err) => {
421
- warn ! ( "Failed to add sample to the profile: {err}" )
421
+ // If the string table becomes full, this could flood customer
422
+ // logs, which is why I've chosen this level.
423
+ debug ! ( "Failed to add sample to the profile: {err}" )
422
424
}
423
425
}
424
426
}
You can’t perform that action at this time.
0 commit comments