import com.example.lumberjack.Logger; public class MyApp { private static final Logger logger = Logger.getLogger(MyApp.class); public static void main(String[] args) { try { throw new Exception("Something went wrong"); } catch (Exception e) { } } }