diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-04-10 11:29:45 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-04-11 14:04:28 +0200 |
| commit | 96f8824924643263d6fc1acb1b32e6d3bd7091da (patch) | |
| tree | c08821d225ea839adb2f2db7f95342de1404144c /gui/src/main | |
| parent | 0706189fa297ed5ead569e8a669145a9b96707af (diff) | |
| download | mullvadvpn-96f8824924643263d6fc1acb1b32e6d3bd7091da.tar.xz mullvadvpn-96f8824924643263d6fc1acb1b32e6d3bd7091da.zip | |
Suppress the message from `execFile` since it may contain sensitive information
Diffstat (limited to 'gui/src/main')
| -rw-r--r-- | gui/src/main/index.ts | 2 |
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()}`, ); |
