Skip to content

NodeActa

The NodeActa ( alias na) class provides static methods for logging information, warnings, and errors with optional click handlers. What will be written in log files is configured in nodeacta.server.log.cfg. By default, only errors will be logged.

Static Methods:

  • logInfo(text: any, clickHandler?: ()=> any)
    Logs an informational message to the system, with an optional handler that triggers when the message is clicked.
  • text: The information message to log (can be any type).
  • clickHandler: (Optional) A function that will be triggered when the logged message is double-clicked in Messages View.
  • logWarning(text: any, clickHandler?: ()=> any)
    Logs a warning message to the system, with an optional click handler.
  • text: The warning message to log (can be any type).
  • clickHandler: (Optional) A function that will be triggered when the logged message is double-clicked in Messages View.
  • logError(text: any, clickHandler?: ()=> any)
    Logs an error message to the system, with an optional click handler.
  • text: The error message to log (can be any type).
  • clickHandler: (Optional) A function that will be triggered when the logged error message is double-clicked in Messages View.