Change checkLog interval

This commit is contained in:
7cc5c4f330d47060 2024-11-20 01:55:10 -05:00
parent f1fc9c9bff
commit 172eb11577
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA

View file

@ -17,7 +17,7 @@ const checkLog = () => {
} }
} }
setInterval(checkLog, 3600000) // Runs once every hour, setInterval(checkLog, 7200000) // Runs once every two hours,
checkLog() // and at bot startup. checkLog() // and at bot startup.
export default function load (b) { export default function load (b) {