/** * Print out a message to the log. * * @param source String: the source bean * @param method String: the source method * @param message String: the message */ protected static void println(String source, String method, String message) { if (Utility.init()) { logWriter.println(source, method, "", message); } }