-
-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Closed
Labels
utilIssues and PRs related to the built-in util module.Issues and PRs related to the built-in util module.
Description
$ node -v
v4.2.6
$ node debug format.js
< Debugger listening on port 5858
debug> . ok
break in format.js:1
> 1 var util = require('util');
2 var output = util.format({ p1: 'v1' });
3 console.log(output);
debug> n
break in format.js:2
1 var util = require('util');
> 2 var output = util.format({ p1: 'v1' });
3 console.log(output);
4
debug> n
program terminated
This is not reproducible in [email protected]. I can repro this in 4.2.5 and 4.2.6.
Ran into this because util.format is how log4js formats log data.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
utilIssues and PRs related to the built-in util module.Issues and PRs related to the built-in util module.