Revert logger status from printf to say
All checks were successful
Deploy datapack to dev / Build (push) Successful in 7s

This commit is contained in:
themodernhakr 2025-03-11 13:36:22 -05:00
parent d9ef26cfa7
commit 20f3aa2b78

View File

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