Fixed log4j class not found error; Updated log4j version

This commit is contained in:
Gregory Ballantine
2023-01-25 10:14:50 -05:00
parent 47e8ec4f43
commit f132861cbc
2 changed files with 3 additions and 3 deletions

View File

@@ -4,6 +4,6 @@ import org.apache.logging.log4j.LogManager;
public class Logger {
public static org.apache.logging.log4j.Logger logger = LogManager.getLogger();
public static org.apache.logging.log4j.Logger logger = LogManager.getRootLogger();
}