constLogger=require('@unicity/cloudwatch-logger');constenv='qa';constlogger=newLogger({service : 'events',// this is optional and adds a key saying service in each message.groupName : `hydra${env}.unicity.net/v5a`,streamName : 'test',region : 'us-east-1',handleUnhandledExceptions : true,logLocallyOnly : true// true will make this not actually log to AWS and only log locally});logger.info('hello world',event);