pvillard31 commented on code in PR #10431:
URL: https://github.com/apache/nifi/pull/10431#discussion_r2440139305


##########
nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/events/BulletinFactory.java:
##########
@@ -126,4 +177,17 @@ private static ComponentType getComponentType(final 
Connectable connectable) {
             default -> ComponentType.PROCESSOR;
         };
     }
+
+    private static String formatStackTrace(final Throwable t) {
+        try {
+            final java.io.StringWriter sw = new java.io.StringWriter();
+            final java.io.PrintWriter pw = new java.io.PrintWriter(sw);

Review Comment:
   > Is there a reason for using the fully-qualified class names?
   
   Absolutely not, I'll blame my IDE, fixing



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