Skip to main content
make pairing of comments and associated code clearer, improve grammar
Source Link
Rory O'Kane
  • 30.7k
  • 11
  • 101
  • 133

Both of these usages can be applied:

// more compact, and colour can be applied (better for process managers logging)
 
console.dir(queryArgs, { depth: null, colors: true });

// get a clear list of actual values
 
console.log(JSON.stringify(queryArgs, undefined, 2));

Both of these usages can be applied

// more compact and colour can be applied (better for process managers logging)
 
console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values
 
console.log(JSON.stringify(queryArgs, undefined, 2));

Both of these usages can be applied:

// more compact, and colour can be applied (better for process managers logging)
console.dir(queryArgs, { depth: null, colors: true });

// get a clear list of actual values
console.log(JSON.stringify(queryArgs, undefined, 2));
improved formatting
Source Link
Dmitriy
  • 5.6k
  • 12
  • 27
  • 39

Both of these usages can be applied

// more compact and colour can be applied (better for process managers logging)

console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values

console.log(JSON.stringify(queryArgs, undefined, 2));

// more compact and colour can be applied (better for process managers logging)

console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values

console.log(JSON.stringify(queryArgs, undefined, 2));

Both of these usages can be applied

// more compact and colour can be applied (better for process managers logging)

console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values

console.log(JSON.stringify(queryArgs, undefined, 2));

Both of these usages can be applied

// more compact and colour can be applied (better for process managers logging)

console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values

console.log(JSON.stringify(queryArgs, undefined, 2));
Source Link
Erce
  • 534
  • 6
  • 13

Both of these usages can be applied

// more compact and colour can be applied (better for process managers logging)

console.dir(queryArgs, { depth: null, colors: true });

// clear list of actual values

console.log(JSON.stringify(queryArgs, undefined, 2));