Log/Logger

The Log EIP records messages for monitoring and debugging purposes.

Parameters

Parameter Description Default value Type

Message

Displays the text of the message to be logged.

String

LoggingLevel

Displays the severity level of the log:

* Trace

* Debug

* Info

* Warn

* Error

* Off

INFO

LoggingLevel

LoggingName

Log name

String

Marker

Allows adding a "marker" or "tag" to messages using the SLF4J Marker (Simple Logging Facade for Java). This is useful for categorizing and filtering logs based on specific criteria.

String

Log severity levels indicate the gravity of events recorded in systems. Each level helps categorize the importance of messages and assists in debugging, monitoring, and system analysis. The most common level is INFO, used for general execution information.

Example

  • In the snippet below, the log has an ID and a description.

  • The message parameter logs the message Entered block 1 at the INFO level.

  • In addition to the severity level, the snippet includes a marker to help in categorization.

steps:
  - log:
      id: log-3564773072
      description: log1
      message: Entered block 1
      loggingLevel: INFO
      marker: process-start
Thanks for your feedback!
EDIT

Share your suggestions with us!
Click here and then [+ Submit idea]