Skip to content

Commit 5602951

Browse files
committed
actually, dont include save file
1 parent 4e815ea commit 5602951

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib/pm-log-capture.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ const downloadLogs = async () => {
146146
const str = JSON.stringify(consoleLogs);
147147
let blob = new Blob([str]);
148148
let filename = 'pm-error-download.json';
149+
/* actually, this is a bad idea
149150
// if we can, include the project
150151
if (vm) {
151152
filename = 'pm-error-download.pmp';
@@ -157,6 +158,7 @@ const downloadLogs = async () => {
157158
compression: 'DEFLATE'
158159
});
159160
}
161+
*/
160162
const a = document.createElement('a');
161163
a.style.display = 'none';
162164
document.body.append(a);

0 commit comments

Comments
 (0)