more dependencies and logging configuration

This commit is contained in:
allison
2026-08-25 22:32:36 -05:00
parent 7f57cdfc26
commit af1cf2cf81
3 changed files with 57 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class Main {
static Logger logger = LogManager.getLogger(Main.class);
public static void main(String[] args) {
}
}