Repository: zeppelin Updated Branches: refs/heads/master b885f43e4 -> b2545641a
Fix logger class name to correct one ### What is this PR for? This is to fix logger source class name for correct logs. ### What type of PR is it? Bug Fix ### Todos * [x] - change class name ### What is the Jira issue? n/a ### How should this be tested? passing CI ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Khalid Huseynov <[email protected]> Closes #1226 from khalidhuseynov/fix/logging-classname and squashes the following commits: 1fad00f [Khalid Huseynov] change class name Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/b2545641 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/b2545641 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/b2545641 Branch: refs/heads/master Commit: b2545641a35e3941ece6f67c2a65b4d08d6de519 Parents: b885f43 Author: Khalid Huseynov <[email protected]> Authored: Mon Jul 25 23:38:56 2016 +0900 Committer: Jongyoul Lee <[email protected]> Committed: Thu Aug 4 01:30:41 2016 +0900 ---------------------------------------------------------------------- .../apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/b2545641/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java ---------------------------------------------------------------------- diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java index d2f6ca2..45bf0a1 100644 --- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java +++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/zeppelinhub/ZeppelinHubRepo.java @@ -40,7 +40,7 @@ import com.google.gson.reflect.TypeToken; * ZeppelinHub repo class. */ public class ZeppelinHubRepo implements NotebookRepo { - private static final Logger LOG = LoggerFactory.getLogger(ZeppelinhubRestApiHandler.class); + private static final Logger LOG = LoggerFactory.getLogger(ZeppelinHubRepo.class); private static final String DEFAULT_SERVER = "https://www.zeppelinhub.com"; static final String ZEPPELIN_CONF_PROP_NAME_SERVER = "zeppelinhub.api.address"; static final String ZEPPELIN_CONF_PROP_NAME_TOKEN = "zeppelinhub.api.token";
