Browse Source

Correct the class passed to DefaultPluginFactory's logger (#222)

tags/release-2.4.0
Lee Jenkins 6 years ago
parent
commit
56bf015566
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      pf4j/src/main/java/org/pf4j/DefaultPluginFactory.java

+ 1
- 1
pf4j/src/main/java/org/pf4j/DefaultPluginFactory.java View File

@@ -29,7 +29,7 @@ import java.lang.reflect.Modifier;
*/
public class DefaultPluginFactory implements PluginFactory {

private static final Logger log = LoggerFactory.getLogger(DefaultExtensionFactory.class);
private static final Logger log = LoggerFactory.getLogger(DefaultPluginFactory.class);

/**
* Creates a plugin instance. If an error occurs than that error is logged and the method returns null.

Loading…
Cancel
Save