gnodet commented on code in PR #12540:
URL: https://github.com/apache/maven/pull/12540#discussion_r3651769199


##########
impl/maven-impl/src/main/java/org/apache/maven/impl/model/DefaultModelBuilder.java:
##########
@@ -829,6 +834,14 @@ private void buildBuildPom() throws ModelBuilderException {
                 }
             }
 
+            long t2 = System.nanoTime();
+            logger.info(

Review Comment:
   Suggestion: this timing log uses `INFO` level, but all other 
timing/diagnostic logging in this class uses `DEBUG`. Consider changing to 
`logger.debug(...)` to keep production build output clean — unless you 
specifically want this visible for users.
   
   ```suggestion
               logger.debug(
   ```



-- 
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]

Reply via email to