This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-jakartaee-migration.git


The following commit(s) were added to refs/heads/master by this push:
     new 72e13d2  Output the stack trace when the log message includes an 
exception
72e13d2 is described below

commit 72e13d20efa13cd7d49fcfb850b197d16d46710d
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Feb 8 09:38:39 2021 +0000

    Output the stack trace when the log message includes an exception
---
 src/main/java/org/apache/tomcat/jakartaee/MigrationCLI.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/tomcat/jakartaee/MigrationCLI.java 
b/src/main/java/org/apache/tomcat/jakartaee/MigrationCLI.java
index 1b6dc80..8c33d2d 100644
--- a/src/main/java/org/apache/tomcat/jakartaee/MigrationCLI.java
+++ b/src/main/java/org/apache/tomcat/jakartaee/MigrationCLI.java
@@ -32,7 +32,7 @@ public class MigrationCLI {
     private static final String PROFILE_ARG = "-profile=";
 
     public static void main(String[] args) {
-        System.setProperty("java.util.logging.SimpleFormatter.format", 
"%5$s%n");
+        System.setProperty("java.util.logging.SimpleFormatter.format", "%5$s%n 
%6$s%n");
 
         List<String> arguments = new ArrayList<>(Arrays.asList(args));
         if (arguments.contains("-verbose")) {
@@ -88,5 +88,5 @@ public class MigrationCLI {
     private static void usage() {
         System.out.println(sm.getString("migration.usage"));
     }
-    
+
 }


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

Reply via email to