electron/spec/fixtures/log-test.js
Derek Cicerone 074b9344b5
fix: prevent log files being written to current directory on Windows (#44413)
* fix: prevent log files being written to current directory on Windows

* Update shell/common/logging.cc

Co-authored-by: Robo <hop2deep@gmail.com>

* chore: add test

* chore: update includes

Refs https://chromium-review.googlesource.com/c/chromium/src/+/6418805

* chore: address review feedback

---------

Co-authored-by: Robo <hop2deep@gmail.com>
2025-05-02 16:27:29 -05:00

3 lines
189 B
JavaScript

const binding = process._linkedBinding('electron_common_testing');
binding.log(1, 'CHILD_PROCESS_TEST_LOG');
binding.log(1, `CHILD_PROCESS_DESTINATION_${binding.getLoggingDestination()}`);