File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
nucleus/core/kernel/src/main/java/org/glassfish/runnablejar Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4040import org .glassfish .runnablejar .commandline .CommandLineParser ;
4141
4242import static java .lang .System .exit ;
43+ import static java .util .logging .Level .CONFIG ;
4344import static java .util .logging .Level .FINE ;
4445import static java .util .logging .Level .INFO ;
4546import static java .util .logging .Level .SEVERE ;
@@ -176,7 +177,7 @@ private void runCommandPromptLoop() throws GlassFishException {
176177 }
177178
178179 private void executeCommandFromString (String stringCommand ) {
179- logger .log (FINE , () -> "Executing command: " + stringCommand );
180+ logger .log (CONFIG , () -> "Executing command: " + stringCommand );
180181 // Split according to empty space but not if empty space is escaped by \
181182 String [] split = stringCommand .split ("(?<!\\ \\ )\\ s+" );
182183 String command = split [0 ].trim ();
You can’t perform that action at this time.
0 commit comments