rdblue commented on a change in pull request #1394:
URL: https://github.com/apache/iceberg/pull/1394#discussion_r479419634



##########
File path: 
core/src/main/java/org/apache/iceberg/BaseMetastoreTableOperations.java
##########
@@ -101,12 +109,25 @@ public void commit(TableMetadata base, TableMetadata 
metadata) {
       return;
     }
 
-    doCommit(base, metadata);
+    Stopwatch stopwatch = Stopwatch.createStarted();
+    String newMetadataLocation = doCommit(base, metadata);
     deleteRemovedMetadataFiles(base, metadata);
     requestRefresh();
+    stopwatch.stop();
+
+    LOG.info("Successfully committed to table: {} in: {} ms: {}",

Review comment:
       I don't think we need so many colons. How about `Successfully committed 
to table {} in {} ms`?




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

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