forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Harsh
committed
Jan 19, 2020
1 parent
6319d05
commit 1659f79
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/main/generated/org/jabref/gui/logging/plugins/Log4jPlugins.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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;} | ||
} |