Added logs for desktop app

This commit is contained in:
Mati Dastugue 2020-04-30 16:26:36 -03:00
parent 774b45344a
commit 4567e07d70
1 changed files with 10 additions and 0 deletions

View File

@ -2,11 +2,21 @@
// It has the same sandbox as a Chrome extension.
const TransportNodeHid = require("@ledgerhq/hw-transport-node-hid").default;
const log = require('electron-log');
window.TransportNodeHid = TransportNodeHid;
window.isDesktop = true;
window.addEventListener('DOMContentLoaded', () => {
console.error = (...args) => {
log.error(...args)
}
console.warn = (...args) => {
log.warn(...args)
}
console.log = (...args) => {
log.info(...args)
}
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text