Copilot commented on code in PR #3786:
URL: https://github.com/apache/texera/pull/3786#discussion_r2391950150


##########
core/amber/src/main/scala/edu/uci/ics/texera/web/service/ExecutionConsoleService.scala:
##########
@@ -225,6 +210,10 @@ class ExecutionConsoleService(
     * @return The truncated console message
     */
   def processConsoleMessage(consoleMessage: ConsoleMessage): ConsoleMessage = {
+    // Do not truncate debugger messages
+    if (consoleMessage.msgType== ConsoleMessageType.DEBUGGER){

Review Comment:
   Missing space around the == operator. Should be `consoleMessage.msgType == 
ConsoleMessageType.DEBUGGER`.
   ```suggestion
       if (consoleMessage.msgType == ConsoleMessageType.DEBUGGER) {
   ```



-- 
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]

Reply via email to