Update to add date to exception

This commit is contained in:
William Moore 2023-01-12 11:37:23 -06:00
parent 5bd17e1e32
commit 33fc5865fe

View File

@ -73,7 +73,7 @@ async function temperatoTick() {
} }
} }
} catch (e) { } catch (e) {
console.error(e); console.error(new Date(), e);
} }
} }