Yicong-Huang commented on PR #3786: URL: https://github.com/apache/texera/pull/3786#issuecomment-3353909787
> @Yicong-Huang Just wondering, roughly how many debug messages are typically printed, and what’s their usual length? Could there be cases where a large volume of debug messages gets printed and causes memory issues? debugger messages are outputted by debugger. you can view them from https://docs.python.org/3/library/pdb.html. (look for any message start with "(Pdb)", e.g., `(Pdb) continue`). the frequency depends on the user's usage of debugger. if user only sets up a breakpoint, then only when the breakpoint is hit, a debug message will emit. If user sets up a watch point, then every time a value is updated, a debug message will emit. But in general this is not frequent, especially during debugging. The size of the messages are typically small. But in rare edge cases user could also use debug message to print a large string variable, then it could be large. However I don't think we should worry too much on it. -- 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]
