ParkGyeongTae commented on code in PR #4793:
URL: https://github.com/apache/zeppelin/pull/4793#discussion_r1731353738
##########
file/src/main/java/org/apache/zeppelin/file/HDFSFileInterpreter.java:
##########
@@ -33,11 +33,14 @@
import org.apache.zeppelin.interpreter.InterpreterContext;
import org.apache.zeppelin.interpreter.InterpreterException;
import org.apache.zeppelin.interpreter.thrift.InterpreterCompletion;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
/**
* HDFS implementation of File interpreter for Zeppelin.
*/
public class HDFSFileInterpreter extends FileInterpreter {
+ private static final Logger LOGGER =
LoggerFactory.getLogger(HDFSFileInterpreter.class);
Review Comment:
:)
##########
zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java:
##########
@@ -1206,20 +1206,20 @@ private void patchParagraph(NotebookSocket conn,
if (!zConf.isZeppelinNotebookCollaborativeModeEnable()) {
return;
}
- String paragraphId = fromMessage.getType("id", LOG);
+ String paragraphId = fromMessage.getType("id", LOGGER);
Review Comment:
:)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]