Author Topic: Visibility into Java Live Errors  (Read 1931 times)

rygaard

  • Community Member
  • Posts: 63
  • Hero Points: 1
Visibility into Java Live Errors
« on: November 09, 2022, 05:16:39 PM »
I would like to have visibility into what Java Live Errors is doing to compile my code behind the scenes.

@patrick developed a one-off version of RTECompiler.class that provides exactly the visibility that I need.  This feature request is to:
  • Move this one-off into the main product line, and
  • Either add a flag, or reuse some already existing flag (e.g. some "verbose" flag somewhere), to enable/disable this capability.

patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: Visibility into Java Live Errors
« Reply #1 on: December 05, 2022, 09:55:14 PM »
This will be in the point release, v27.0.1.    There are commands for enabling/disabling the debug logging (rte_enable_logging/rte_disable_logging).  When enabled, debugging is logged to "logs\rte.log" in your configuration directory.   This includes the options passed to the compiler, and also enables some logging that previously only happened for debug builds.


rygaard

  • Community Member
  • Posts: 63
  • Hero Points: 1
Re: Visibility into Java Live Errors
« Reply #2 on: January 13, 2023, 06:43:24 PM »
Excellent!