private void fireApplicationEvent(Level level, String message, Throwable throwable) {
   GriffonApplication app = ApplicationHolder.getApplication();
   if (app != null) {
     app.eventAsync(EVENT_NAME, Arrays.asList(level.toString(), message, throwable));
   }
 }