There is somewhere in the code that is logging all subject mappings when log level is set to debug. Debug log level should still be performant even when debugging an issue. With the log being so large, this could potentially decrease performance as subject mappings are added.
Find in the code where this log statement is taking place and remove it or change it to trace level log.
There is somewhere in the code that is logging all subject mappings when log level is set to debug. Debug log level should still be performant even when debugging an issue. With the log being so large, this could potentially decrease performance as subject mappings are added.
Find in the code where this log statement is taking place and remove it or change it to trace level log.
Acceptance Criteria: