Enhanced logging

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2020-11-08 19:27:02 +01:00
parent 091613a21d
commit 6a855e70f8
No known key found for this signature in database
GPG key ID: 69DE3C3C097DB7F7

View file

@ -1,7 +1,7 @@
// Variables used by Scriptable. // Variables used by Scriptable.
// These must be at the very top of the file. Do not edit. // These must be at the very top of the file. Do not edit.
// icon-color: brown; icon-glyph: magic; // icon-color: brown; icon-glyph: magic;
// Version 1.1.1 // Version 1.1.2
let widgetInputRAW = args.widgetParameter; let widgetInputRAW = args.widgetParameter;
let token; let token;
@ -53,9 +53,13 @@ async function getLogo() {
} }
} }
} }
console.log('Load Tree Counter')
let treeCounter = await getTreeCounter(token); let treeCounter = await getTreeCounter(token);
console.log('Tree Counter loaded')
console.log(treeCounter)
console.log('Load Logo')
let ecosiaLogo = await getLogo() let ecosiaLogo = await getLogo()
console.log('Logo loaded')
// Create Widget // Create Widget
let widget = new ListWidget(); let widget = new ListWidget();