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.
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?