Valid AD0-E116 Dumps shared by ExamDiscuss.com for Helping Passing AD0-E116 Exam! ExamDiscuss.com now offer the newest AD0-E116 exam dumps, the ExamDiscuss.com AD0-E116 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com AD0-E116 dumps with Test Engine here:
A developer creates two custom classes. ClassA has the following code: package com.aem.abc; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ClassA { private static final Logger logger = LoggerFactory.getLogger(this.getClass()); public void classAMethod() { logger.debug("Message from Class A method"); } } The developer creates a custom log custom.log with debug level in OSGi sling log support for the Java package com.aem.abc. The developer adds another class ClassB with the following code: package com.aem.xyz; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ClassB { private static final Logger logger = LoggerFactory.getLogger(this.getClass()); public void classBMethod() { logger.debug("Message from Class B method"); } } Which action must the developer take to see the log messages in the same file from both classes?