1
- import { writeFileSync } from 'node:fs' ;
2
1
import { inspect } from 'node:util' ;
3
2
import { escapeLines } from '../arguments/escape.js' ;
4
3
import { defaultVerboseFunction } from './default.js' ;
5
4
import { applyVerboseOnLines } from './custom.js' ;
6
5
7
- // Write synchronously to ensure lines are properly ordered and not interleaved with `stdout`
6
+ // This prints on stderr.
7
+ // If the subprocess prints on stdout and is using `stdout: 'inherit'`,
8
+ // there is a chance both writes will compete (introducing a race condition).
9
+ // This means their respective order is not deterministic.
10
+ // In particular, this means the verbose command lines might be after the start of the subprocess output.
11
+ // Using synchronous I/O does not solve this problem.
12
+ // However, this only seems to happen when the stdout/stderr target
13
+ // (e.g. a terminal) is being written to by many subprocesses at once, which is unlikely in real scenarios.
8
14
export const verboseLog = ( { type, verboseMessage, fdNumber, verboseInfo, result} ) => {
9
15
const verboseObject = getVerboseObject ( { type, result, verboseInfo} ) ;
10
16
const printedLines = getPrintedLines ( verboseMessage , verboseObject ) ;
11
17
const finalLines = applyVerboseOnLines ( printedLines , verboseInfo , fdNumber ) ;
12
- writeFileSync ( STDERR_FD , finalLines ) ;
18
+ if ( finalLines !== '' ) {
19
+ console . warn ( finalLines . slice ( 0 , - 1 ) ) ;
20
+ }
13
21
} ;
14
22
15
23
const getVerboseObject = ( {
@@ -35,9 +43,6 @@ const getPrintedLine = verboseObject => {
35
43
return { verboseLine, verboseObject} ;
36
44
} ;
37
45
38
- // Unless a `verbose` function is used, print all logs on `stderr`
39
- const STDERR_FD = 2 ;
40
-
41
46
// Serialize any type to a line string, for logging
42
47
export const serializeVerboseMessage = message => {
43
48
const messageString = typeof message === 'string' ? message : inspect ( message ) ;
0 commit comments