Pil0tXia commented on PR #4698:
URL: https://github.com/apache/eventmesh/pull/4698#issuecomment-1872482856

   Thanks @ppkarwasz @pandaapo , let's use LogUtils.
   
   ```java
       public static void trace(Logger logger, String msg, Object arg) {
           final LoggingEventBuilder builder = logger.atTrace();
           if (builder instanceof CallerBoundaryAware) {
               ((CallerBoundaryAware) builder).setCallerBoundary(FQCN);
           }
           builder.log(msg, arg);
       }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to