debug: log to terminal
Node.js CI / CI (push) Failing after 8s
Security Scan and Upload / Security & DefectDojo Upload (push) Has been cancelled

This commit is contained in:
2026-02-04 08:06:16 -08:00
parent b6fb12ae9f
commit 6da707f1e6
3 changed files with 92 additions and 14 deletions
+11 -2
View File
@@ -4,8 +4,17 @@
* @author Naomi Carrigan
*/
import { Logger } from "@nhcarrigan/logger";
// import { Logger } from "@nhcarrigan/logger";
const logger = new Logger("Minori", process.env.LOG_TOKEN ?? "");
// const logger = new Logger("Minori", process.env.LOG_TOKEN ?? "");
const logger = {
error: (message: string, error: Error) => {
console.error(message, error);
},
log: (level: string, message: string) => {
console.log(level, message);
},
};
export { logger };