summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-04-10 11:29:45 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-04-11 14:04:28 +0200
commit96f8824924643263d6fc1acb1b32e6d3bd7091da (patch)
treec08821d225ea839adb2f2db7f95342de1404144c
parent0706189fa297ed5ead569e8a669145a9b96707af (diff)
downloadmullvadvpn-96f8824924643263d6fc1acb1b32e6d3bd7091da.tar.xz
mullvadvpn-96f8824924643263d6fc1acb1b32e6d3bd7091da.zip
Suppress the message from `execFile` since it may contain sensitive information
-rw-r--r--gui/src/main/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts
index 67bb326465..a934f11121 100644
--- a/gui/src/main/index.ts
+++ b/gui/src/main/index.ts
@@ -888,7 +888,7 @@ class ApplicationMain {
execFile(executable, args, { windowsHide: true }, (error, stdout, stderr) => {
if (error) {
log.error(
- `Failed to collect a problem report: ${error.message}
+ `Failed to collect a problem report.
Stdout: ${stdout.toString()}
Stderr: ${stderr.toString()}`,
);