8000 remove console logs · traceloop/openllmetry-js@a03bf30 · GitHub
[go: up one dir, main page]

Skip to content

Commit a03bf30

Browse files
committed
remove console logs
1 parent bc319d8 commit a03bf30

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/traceloop-sdk/src/lib/tracing/span-processor.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -163,17 +163,11 @@ const onSpanEnd = (
163163
originalOnEnd: (span: ReadableSpan) => void,
164164
instrumentationLibraries?: string[],
165165
) => {
166-
console.log("instrumentation libraries", instrumentationLibraries);
167166
return (span: ReadableSpan): void => {
168-
console.log(
169-
"instrumentation library name",
170-
span.instrumentationLibrary.name,
171-
);
172167
if (
173168
instrumentationLibraries &&
174169
!instrumentationLibraries.includes(span.instrumentationLibrary.name)
175170
) {
176-
console.log("skipping span", span.instrumentationLibrary.name);
177171
return;
178172
}
179173

0 commit comments

Comments
 (0)
0