-
-
Notifications
You must be signed in to change notification settings - Fork 34.6k
Closed
Labels
consoleIssues and PRs related to the console subsystem.Issues and PRs related to the console subsystem.
Description
Using console is potentially unsafe:
//index.js
var fs = require('fs')
process.on('uncaughtException', function (err) {
fs.writeFileSync('./uncaughtException.txt', err.stack)
})
setInterval(ping, 1000)
function ping () {
console.log('ping')
}Then:
iojs index.js &
exitYields Error: This socket is closed. This reminds me of old versions of IE where console property was defined only when devtools were open.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
consoleIssues and PRs related to the console subsystem.Issues and PRs related to the console subsystem.