Added queue debugging.

This commit is contained in:
rainbow napkin 2025-10-25 09:46:28 -04:00
parent db3ec58ad9
commit f95a0ae48c
6 changed files with 68 additions and 4 deletions

View file

@ -74,4 +74,9 @@ module.exports.securityCheck = function(){
if(!validator.isStrongPassword(config.mail.pass) || config.mail.pass == "CHANGE_ME"){
loggerUtil.consoleWarn("Insecure Email Password! Change Email password!");
}
//check debug mode
if(config.debug){
loggerUtil.consoleWarn("Debug mode enabled! Understand the risks and security implications before enabling on production servers!");
}
}