Logging (StdErr)
Log integration messages to stderr in Pandium so users can view run output and errors in the Integration Hub and In-App Marketplace across integrations and tenants.
All logs that you wish to display to your users should be written to stderr.
These logs can be viewed via the In-App Marketplace by users, or from within the Integration Hub on various pages, including the integration level, tenant level, and main run resource.
Below are various examples of how to do this is in multiple languages.
using System;
Console.Error.WriteLine("Hello World")System.err.println("Hello World!");console.error('Hello World')fwrite(STDERR, 'Hello World' . PHP_EOL);import sys
print("Hello World!", file=sys.stderr)require "logger"
log = Logger.new(STDERR)
log.debug('Hello Word!')Last updated
Was this helpful?