import { IntegrationInvocationContext, IntegrationJobKey } from '../types'; /** * Extends the `IntegrationLogger` configured to include additional tracing * context, intended to be called at the start of executing an integration * job process. * * @param context the invocation context * @param jobKey the integration job key */ export default function initializeIntegrationJobLogger(context: IntegrationInvocationContext, jobKey: IntegrationJobKey): import("../types").IntegrationLogger;