mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* 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
22 lines
No EOL
663 B
HTML
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> |