Fix typos in log messages Change-Id: I3fe7d3bc078a9df093aeb032b304b88a5de052c3
diff --git a/src/main/java/com/googlesource/gerrit/plugins/hooks/bz/BugzillaItsFacade.java b/src/main/java/com/googlesource/gerrit/plugins/hooks/bz/BugzillaItsFacade.java index a851a3e..9f15913 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/hooks/bz/BugzillaItsFacade.java +++ b/src/main/java/com/googlesource/gerrit/plugins/hooks/bz/BugzillaItsFacade.java
@@ -171,7 +171,7 @@ } catch (Exception ex) { if (!quiet) { - log.error("I was unable to logout", ex); + log.error("I was unable to login", ex); } return null; @@ -182,11 +182,11 @@ if (client == null) { try { - log.debug("Connecting to bugzillab at URL " + getUrl()); + log.debug("Connecting to bugzilla at URL " + getUrl()); client = new BugzillaClient(getUrl()); log.debug("Autenthicating as user " + getUsername()); } catch (Exception ex) { - log.info("Unable to connect to Connected to " + getUrl() + " as " + log.info("Unable to connect to " + getUrl() + " as " + getUsername()); throw new IOException(ex); }