@ -443,5 +443,7 @@
"messageDeletedPlaceholder": "This message has been deleted",
"messageDeleted": "Message deleted",
"surveyTitle": "Take our Session Survey",
"goToOurSurvey": "Go to our survey"
"goToOurSurvey": "Go to our survey",
"operatingSystem": "Operating System: $operatingSystem$\n",
"commitHash": "Git Commit SHA: $commitHash$\n"
}
@ -22,5 +22,9 @@ window.getNodeVersion = () => config.node_version;
window.getEnvironment = () => config.environment;
require('./js/logging');
const os = require('os');
window.getOSRelease = () => `${os.type()} ${os.release} ${os.platform()}`;
window.getCommitHash = () => config.commitHash;
window.closeDebugLog = () => ipcRenderer.send('close-debug-log');
@ -26,9 +26,14 @@
this.render();
this.$('textarea').val(i18n('loading'));
const operatingSystemInfo = `${i18n('operatingSystem', window.getOSRelease())}`;
const commitHashInfo = i18n('commitHash', window.getCommitHash());
// eslint-disable-next-line more/no-then
window.log.fetch().then(text => {
this.$('textarea').val(text);
const debugLogWithSystemInfo = operatingSystemInfo + commitHashInfo + text;
this.$('textarea').val(debugLogWithSystemInfo);
});
},
events: {