Revert "debug: log to console"
Node.js CI / CI (push) Failing after 8s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m3s

This reverts commit bc88bbc5e3.
This commit is contained in:
2026-02-03 17:43:58 -08:00
parent cf98d329b0
commit efac4cf32b
2 changed files with 2 additions and 19 deletions
+2 -11
View File
@@ -4,17 +4,8 @@
* @author Naomi Carrigan
*/
// import { Logger } from "@nhcarrigan/logger";
import { Logger } from "@nhcarrigan/logger";
// 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}`);
},
};
const logger = new Logger("Minori", process.env.LOG_TOKEN ?? "");
export { logger };