Here you can find the source of LogException(Logger log, String descrption, Throwable e)
public static void LogException(Logger log, String descrption, Throwable e)
//package com.java2s; //License from project: Apache License import org.slf4j.Logger; public class Main { public static void LogException(Logger log, String descrption, Throwable e) { String msg = e.getMessage(); log.error("{}:{}", descrption, msg); }//ww w. j a va 2 s .c om }