Here you can find the source of logErrorMessage(String msg)
public static void logErrorMessage(String msg)
//package com.java2s; //License from project: GNU General Public License import javax.swing.*; public class Main { private static java.util.logging.Logger logger = java.util.logging.Logger.getLogger("idepix"); public static void logErrorMessage(String msg) { if (System.getProperty("gpfMode") != null && "GUI".equals(System.getProperty("gpfMode"))) { JOptionPane.showOptionDialog(null, msg, "IDEPIX - Error Message", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null); } else {/*from ww w. ja v a2s . com*/ info(msg); } } public static void info(final String msg) { logger.info(msg); System.out.println(msg); } }