This is an automated email from the ASF dual-hosted git repository.

jongyoul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new a72b8f8fb5 [ZEPPELIN-6480] Stop logging terminal dashboard HTML
a72b8f8fb5 is described below

commit a72b8f8fb5e8c2e3cd96b595518d56d0582f3d89
Author: 백형준 <[email protected]>
AuthorDate: Mon Aug 3 23:19:09 2026 +0900

    [ZEPPELIN-6480] Stop logging terminal dashboard HTML
    
    ### What is this PR for?
    
      Remove the INFO log that writes the full rendered terminal dashboard HTML.
    
      The dashboard HTML is already written to the paragraph output, so logging 
it duplicates the content, adds unnecessary log volume, and exposes terminal 
URL parameters in logs.
    
      The paragraph output rendering behavior remains unchanged.
    
      ### What type of PR is it?
    
      Improvement
    
      ### Todos
    
      * [x] Remove the full dashboard HTML log
      * [x] Preserve the paragraph output rendering
      * [x] Run the shell module build and tests
    
      ### What is the Jira issue?
    
      https://issues.apache.org/jira/browse/ZEPPELIN-6480
    
      ### How should this be tested?
    
      ```bash
      ./mvnw test -pl shell
    
      The build completed successfully.
    
      ### Screenshots (if appropriate)
    
      Not applicable.
    
      ### Questions:
    
      - Does the license files need to update? No
      - Is there breaking changes for older versions? No
      - Does this needs documentation? No
    
    Closes #5365 from 
vividbaek/ZEPPELIN-6480-remove-terminal-dashboard-html-log.
    
    Signed-off-by: Jongyoul Lee <[email protected]>
---
 shell/src/main/java/org/apache/zeppelin/shell/TerminalInterpreter.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/shell/src/main/java/org/apache/zeppelin/shell/TerminalInterpreter.java 
b/shell/src/main/java/org/apache/zeppelin/shell/TerminalInterpreter.java
index 5a4eb8bae7..173ccba293 100644
--- a/shell/src/main/java/org/apache/zeppelin/shell/TerminalInterpreter.java
+++ b/shell/src/main/java/org/apache/zeppelin/shell/TerminalInterpreter.java
@@ -176,7 +176,6 @@ public class TerminalInterpreter extends 
KerberosInterpreter {
     jinjaParams.put("TERMINAL_SERVER_URL", terminalServerUrl);
     String terminalDashboardTemplate = jinjava.render(template, jinjaParams);
 
-    LOGGER.info(terminalDashboardTemplate);
     try {
       intpContext.out.setType(InterpreterResult.Type.ANGULAR);
       InterpreterResultMessageOutput outputUI = intpContext.out.getOutputAt(0);

Reply via email to