Skip to content

Commit 97e75ba

Browse files
committed
firestore/scripts/run-tests.ts: use errorLog() to log errors, rather than debugLog().
1 parent 28a86f2 commit 97e75ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/firestore/scripts/run-tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,14 @@ const childProcess = spawn(nyc, args, {
142142
}).childProcess;
143143

144144
process.once('exit', () => {
145-
debugLog("WARNING: received 'exit' event; killing child process");
145+
errorLog("WARNING: received 'exit' event; killing child process");
146146
childProcess.kill();
147147
});
148148
process.once('SIGINT', () => {
149-
debugLog("WARNING: received 'SIGINT' event; sending it to child process");
149+
errorLog("WARNING: received 'SIGINT' event; sending it to child process");
150150
childProcess.kill('SIGINT');
151151
});
152152
process.once('SIGTERM', () => {
153-
debugLog("WARNING: received 'SIGTERM' event; sending it to child process");
153+
errorLog("WARNING: received 'SIGTERM' event; sending it to child process");
154154
childProcess.kill('SIGTERM');
155155
});

0 commit comments

Comments
 (0)