debug: log to console
Node.js CI / CI (push) Failing after 7s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 51s

This commit is contained in:
2026-02-03 17:41:38 -08:00
parent 0ee6f7ed23
commit bc88bbc5e3
2 changed files with 19 additions and 2 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) => {
console.error(message);
},
log: (level: string, message: string) => {
console.log(`${level}: ${message}`);
},
};
export { logger };