Show status after toggling logger
All checks were successful
Deploy datapack to dev / Build (push) Successful in 6s

This commit is contained in:
themodernhakr 2025-03-11 13:39:47 -05:00
parent 20f3aa2b78
commit 5dc0dba29e

View File

@ -35,8 +35,10 @@ class logger {
switch($logger) { switch($logger) {
case 0: case 0:
$logger = true; $logger = true;
this.status();
case 1: case 1:
$logger = false; $logger = false;
this.status();
} }
} }