logger added

This commit is contained in:
Owen Rees
2023-06-22 17:03:01 +02:00
parent 2e5d122329
commit 195a2a98fc
6 changed files with 19 additions and 6 deletions
+7
View File
@@ -0,0 +1,7 @@
export const infoLog = (...params: any[]) => {
console.log(...params);
};
export const errorLog = (...params: any[]) => {
console.error(...params);
};