Home
Categories
Dictionary
Download
Project Details
Changes Log
FAQ
License

Script logger



The ScriptLogger is an interface which logs informations and errors during the script execution. The logger is accessible by the logger field.

It is possible to set a custom logger by ScriptWrapper.setScriptLogger(ScriptLogger).

Th script logger is available through the logger field in your script. For example:
   public void apply() {
      logger.append("Some text");
   }

Logger API

The logger has the following regular methods:
  • Some methods allow to append a message in the logger
  • Some methods allow to append an hyperlink in the logger
  • Some methods allow to append an error message in the logger
  • Some methods allow to manage the tab for the messages

General logger methods

The following methods are general to the logger:
These methods have no implementation by default. They are implemented in the Swing Script logger.

Append a message

The following methods allow to append a message in the logger:
By default these methods only print messages on the console.

The methods allow to append an hyperlink:
By default these methods only print messages on the console.

Append an error message

The following methods allow to append an error message:
By default these methods only print messages on the error console.

Managing the tabs

The following methods allow to manage the tabs:
  • The ScriptLogger.setTab(int) method sets the current value for of the tab for the text. All subsequent lines will be presented with a tab of tabs
  • The ScriptLogger.clearTab() method clear the current value of the tab for the text. All subsequent lines will be presented without tab
  • The ScriptLogger.getTab() method return the String representing the current String value of the tab

The ScriptLogger.getTab() method can be used to print tabs when writing messages on the console or in a File. Beware that this method can't be used when writing the messages on the Swing Script logger.

Swing implementation

Main Article: Swing Script logger

There is a Swing utility class which implements the Script logger interface.

See also


Categories: api

Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence