Fix console.* calls on Windows
- Calls for console.* on browser process are printed with no need for --enable-logging - The output is without the logging prefix - The cursor in the terminal is always after the last output - The first output starts on a new line and not at the prompt - console.* from renderer are not printed to cmd - Added a missing '\n' in the default_app help output
This commit is contained in:
parent
e682dc7544
commit
1896deb10e
4 changed files with 8 additions and 3 deletions
|
@ -22,7 +22,7 @@ if process.platform is 'win32'
|
|||
# Redirect node's console to use our own implementations, since node can not
|
||||
# handle console output when running as GUI program.
|
||||
print = (args...) ->
|
||||
process.log util.format(args...)
|
||||
process.log util.format(args...) + "\n"
|
||||
console.log = console.error = console.warn = print
|
||||
process.stdout.write = process.stderr.write = print
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue