Skip to content

Commit

Permalink
Fixes issue JabRef#5815
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh committed Jan 19, 2020
1 parent 6319d05 commit 1659f79
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package org.jabref.gui.logging.plugins;

import org.apache.logging.log4j.plugins.processor.PluginEntry;
import org.apache.logging.log4j.plugins.processor.PluginService;

public class Log4jPlugins extends PluginService {

private static PluginEntry[] entries = new PluginEntry[] {
new PluginEntry("guiappender", "org.jabref.gui.logging.GuiAppender", "appender", true, false, "Core"),
new PluginEntry("ourapplicationinsightsappender", "org.jabref.gui.logging.ApplicationInsightsAppender", "appender", true, false, "Core")
};
@Override
public PluginEntry[] getEntries() { return entries;}
}

0 comments on commit 1659f79

Please sign in to comment.