Skip to content

Commit d8037de

Browse files
committed
Set child process exit level
1 parent cbd1fc7 commit d8037de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node/src/integrations/childProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function captureChildProcessEvents(child: ChildProcess, options: Options): void
6969
addBreadcrumb({
7070
category: 'child_process',
7171
message: `Child process exited with code '${code}'`,
72-
level: code === 0 ? 'warning' : 'info',
72+
level: code === 0 ? 'info' : 'warning',
7373
data,
7474
});
7575
}

0 commit comments

Comments
 (0)