fix(logging): updated entire server side to the new logging system

This commit is contained in:
2025-03-07 13:40:29 -06:00
parent ce11b1f57e
commit 12e15babb4
33 changed files with 482 additions and 72 deletions

View File

@@ -1,7 +1,7 @@
import {log} from "../../logger/logger.js";
import {createLog} from "../../logger/logger.js";
export const sendEmail = async () => {
log.info("Preparing to send an email");
createLog("info", "lst", "general", "Preparing to send an email");
// settings
};