Skip to content

Tag: aws-lambda

Disable Azure service bus printing logs in cloud watch

I was getting following error message in aws lambda logs : so i added maven depdenecies as : But on adding slfj4j dependencies unwated logs from azure service bus are also getting printed now eg. my log4j.xml looks like this : How can i disable these logs getting printed ? Answer I think the problem is relate…

Logging in AWS Lambda with slf4j

I am using a lambda function and writing it in Java. I was looking up logging for Lambda functions when I read the docs and they support log4j – http://docs.aws.amazon.com/lambda/latest/dg/java-logging.html#java-wt-logging-using-log4j. I was wondering if we could use logging using the Slf4j annotation a…