Logger

ID: logger

Writes to the tenant log.

Configuration

public final static String PARAM_MESSAGE = "message"; // mandatory
public final static String PARAM_LOG_LEVEL = "logLevel"; // optional

// values
public final static String LOG_LEVEL_INFO = "info";
public final static String LOG_LEVEL_DEBUG = "debug";
public final static String LOG_LEVEL_WARN = "warn";
public final static String LOG_LEVEL_ERROR = "error";
public final static String LOG_LEVEL_FATAL = "fatal";
public final static String LOG_LEVEL_TRACE = "trace";
    
<tbody>
    <tr>
        <td>message</td>
        <td>text</td>
        <td>true</td>
        <td></td>
        <td>The message to be logged.</td>
    </tr>
    <tr>
        <td>logLevel</td>
        <td>text</td>
        <td>false</td>
        <td>debug</td>
        <td>The log level to log at (either "info", "debug", "warn", "error", "fatal" or "trace"</td>
    </tr>
</tbody>
Property Type Required Default Description