Skip to content

Commit 607a383

Browse files
committed
another style fix, after the merge from main
1 parent c1440e0 commit 607a383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/bunyan/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const log = bunyan.createLogger({ name: 'myapp', level: 'debug' });
2828
log.debug({ foo: 'bar' }, 'hi');
2929

3030
const tracer = otel.trace.getTracer('example');
31-
tracer.startActiveSpan('manual-span', (span) => {
31+
tracer.startActiveSpan('manual-span', span => {
3232
log.info('this record will have trace_id et al fields for the current span');
3333
span.end();
3434
});

0 commit comments

Comments
 (0)