Open juliangruber opened 9 years ago
currently if your browser code executes console.log('foo %s', 'bar') the server will print foo %s bar. Use require('util').format to fix this.
console.log('foo %s', 'bar')
foo %s bar
require('util').format
currently if your browser code executes
console.log('foo %s', 'bar')
the server will printfoo %s bar
. Userequire('util').format
to fix this.