mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 21:50:04 +00:00
added debugger and timer
improved paint efficiency debugged relative position removed bug in parser for empty attribute methods
This commit is contained in:
11
src/guiTree/Helper/Debugger.java
Normal file
11
src/guiTree/Helper/Debugger.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package guiTree.Helper;
|
||||
|
||||
public class Debugger {
|
||||
private static Timer timer = new Timer();
|
||||
|
||||
public static void log(String message, Tag tag) {
|
||||
if(tag.value) {
|
||||
System.out.println("[" + tag.toString() + "] " + message);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user