The list of methods to do Error Print are organized into topic(s).
void
printError(Class> c, String m, Exception e) print Error
if (c != null) {
System.err.println("<" + c.getCanonicalName() + "> Error: " + m);
if (e != null) {
System.err.print("<" + c.getCanonicalName() + "> ...caused by: ");
e.printStackTrace();
} else {
System.err.println("Error: " + m);
...
void
printError(String message, Exception e, boolean pst) print Error
if (ERROR_ENABLED) {
if (e != null && e.getMessage() != null) {
message = message + " : " + e.getMessage();
System.err.println("[ERROR] " + message);
if (e != null && pst) {
e.printStackTrace(System.err);
void
printError(String s) print Error
if (ERROR)
System.out.printf("[ERROR] [%05d] %s%n", timeSince(), s);
void
printError(String s) print Error
infoLog.append("[STDERR] " + s + '\n');
System.out.printf("[STDERR] %s\n", s);