pdk.flow.Logger

functions that can write string data directly to the logs

All functions


debug

logs additional information with DEBUG log level that can help in the process of debugging and analyzing problems. The messages may contain implementation details and other technical aspects.

Arguments:

Result:

  • No variable is returned. A new record has been added to the logs

Possible exceptions


error

logs information with ERROR log level. It is better to use for critical errors that can significantly impact the operation of the system.

Arguments:

Result:

  • No variable is returned. A new record has been added to the logs

Possible exceptions


info

logs information with INFO log level. It is better to use it for messages that help indicate important events within processes or workflows.

Arguments:

Result:

  • No variable is returned. A new record has been added to the logs

Possible exceptions


trance

logs information with TRACE log level. Use to log a detailed information about the progress of the system.

Arguments:

Result:

  • No variable is returned. A new record has been added to the logs

Possible exceptions


warn

logs information with WARN log level. Use to log messages about potential problems that are not critical, but may require the user's attention.

Arguments:

Result:

  • No variable is returned. A new record has been added to the logs

Possible exceptions

Last updated