Fix AccountController logger name Because of a copy&paste error the AccountController had an incorrect logger name. Change-Id: Ib8ab798ef5cca7629a523262e6a1e8564855cafe
diff --git a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/AccountController.java b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/AccountController.java index b37cc42..3d87a6c 100644 --- a/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/AccountController.java +++ b/github-plugin/src/main/java/com/googlesource/gerrit/plugins/github/wizard/AccountController.java
@@ -54,7 +54,7 @@ public class AccountController implements VelocityController { private static final Logger log = LoggerFactory - .getLogger(VelocityControllerServlet.class); + .getLogger(AccountController.class); private final AddSshKey restAddSshKey; private final GetSshKeys restGetSshKeys; private final AccountManager accountManager;