Create general purpose logging module #4

Merged
ehrumsey merged 15 commits from dev-logging into dev 2025-03-11 20:31:37 -05:00
Showing only changes of commit f4d444635b - Show all commits

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";
}
}