blade.kit.logging.Logger.error()

Here are the examples of the java api blade.kit.logging.Logger.error() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

18 Source : ExceptionUtil.java
with GNU General Public License v3.0
from wistbean

public static void logStackTrace(Logger logger, Exception e) {
    logger.error(getStackTrace(e));
}