chore: Update toner level alert message in MonitorController

This commit is contained in:
Douglas Barone 2024-08-14 07:46:44 -04:00
parent fbce4a6837
commit 21e1601a07

View File

@ -18,7 +18,7 @@ class MonitorController {
})
if (status?.tonerBlackLevel && status.tonerBlackLevel < 25) {
res.send('low toner')
res.send(`Toner baixo! Nível atual: ${status.tonerBlackLevel}%`)
} else {
res.send('ok')
}