Revert logger status from printf to say

This commit is contained in:
themodernhakr 2025-03-11 13:36:22 -05:00
parent 58ef0a251e
commit f4d444635b

View File

@ -43,9 +43,9 @@ class logger {
function status() {
switch($logger) {
case 0:
printf("Logging is disabled");
say "Logging is disabled";
case 1:
printf("Logging is enabled");
say "Logging is enabled";
}
}