the integration logger object passed into the startup method
Example of setting the logger within the integration's startup method:
const { setLogger } = require('polarity-integration-utils/logger');
function startup(logger){
setLogger(logger);
}
You can now use getLogger to get the logger object anywhere within your integration codebase.
Set the logger object used by the integration.