specter-desktop/pyinstaller/electron/error_logs.html
Kim Neunert 4748df61fe
Feature: Better Error-management, logging for the APP and Macos builds improvements (#1405)
* tiny changes

* more documentation

* added upload-instructions

* better traceability of startup

* logs for signing results

* bugfix for sign_results

* winston logging

* error-management and check for specterd-exit

* adding locale

* distinguish logging properly

* don't throw that error unfortunately

* fix accidental change

* increase memory + cpu for cirrus

* increase to 8CPUs but only for cirrus

* decrease resources again
2021-09-27 14:09:43 +02:00

22 lines
No EOL
663 B
HTML

<html>
<link rel="stylesheet" type="text/css" href="./styles.css">
<body style="overflow: auto; height: 100%;">
<div class="card" style="width:90%; max-width: 1000px;">
This window show you the Logs of specter. It might give you hints on why specter is not coming up properly.
<pre><code id="specterapp-logs"></code></pre>
<br>
</div>
<script>
const fs = require('fs')
const path = require('path')
const helpers = require('./helpers')
const specterAppLogs = helpers.getSpecterAppLogs
document.getElementById('specterapp-logs').innerText = specterAppLogs()
</script>
</body>
</html>