// Appends text to the end of the log, and adds a newline automatically.
 private static void println(String message, SimpleAttributeSet settings) {
   print(message + "\n", settings);
 }
 // Default settings
 private static void print(String message) {
   print(message, null);
 }