AWS Authentication Connector – How to Remove or Modify its Log Messages?

0
Hi everyoneI am looking for some information regarding a log message that i am receiving in my mendix application I am using the AWS authentication package in my application. My application is running on a AWS-hosted environment. The log message is as follows:2026-05-28 22:55:00.812 INFO - AWS Authentication Connector: MxLogger initialized2026-05-29 00:00:04.791 INFO - AWS Authentication Connector: MxLogger initializedI have not created this log message externally. So, Would it be possible to remove or alter these logs? If yes then how? Thank you in advance for your suggestions.RegardsTushar
asked
1 answers
0

Hi TUSHAR BOHRA


The message AWS Authentication Connector: MxLogger initialized is generated internally by the AWS Authentication Connector module itself specifically during its initialization lifecycle. This typically fires when The Mendix runtime starts up, and At scheduled intervals (notice the ~1 hour gap between your two log entries this strongly suggests a scheduled event or token refresh cycle within the connector is re-initializing the logger).You cannot remove this log message directly since it's baked into the connector module's Java code.


But you can supress this by Going to your Mendix Cloud / Developer Portal → Environments → your environment → Log Levels, and set the log node AWS Authentication Connector to WARNING or higher. This will suppress INFO-level messages from that module without affecting your app's other logging.

I hope this helps!!

answered