This commit is contained in:
rxf
2023-10-25 16:52:37 +02:00
commit 8bda972061
16 changed files with 4590 additions and 0 deletions

12
logit.js Normal file
View File

@@ -0,0 +1,12 @@
import { DateTime} from 'luxon'
export function logit(str) {
let s = `${DateTime.now().toISO()} => ${str}`;
console.log(s);
}
export function logerror(str) {
let s = `${DateTime.utc().toISO()} => *** ERROR *** ${str}`;
console.log(s);
}