|
|
@ -947,14 +947,12 @@ ipc.on('close-debug-log', () => {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
ipc.on('save-debug-log', (event, logText) => {
|
|
|
|
ipc.on('save-debug-log', (event, logText) => {
|
|
|
|
console.log(logText);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const outputPath = path.join(app.getPath('desktop'), `session_debug_${new Date()}.log`);
|
|
|
|
const outputPath = path.join(app.getPath('desktop'), `session_debug_${new Date()}.log`);
|
|
|
|
fs.writeFile(outputPath, logText, err => {
|
|
|
|
fs.writeFile(outputPath, logText, err => {
|
|
|
|
if (err) {
|
|
|
|
if (err) {
|
|
|
|
console.error('Error saving debug log');
|
|
|
|
console.error('Error saving debug log');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.warn('Successfully saved log');
|
|
|
|
console.error(`Saved log - ${outputPath}`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|