Skip to content

Commit ba65ce2

Browse files
committed
Increase log level printing command to execute in Embedded
1 parent 86a2a18 commit ba65ce2

File tree

1 file changed

+2
-1
lines changed
  • nucleus/core/kernel/src/main/java/org/glassfish/runnablejar

1 file changed

+2
-1
lines changed

nucleus/core/kernel/src/main/java/org/glassfish/runnablejar/UberMain.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
import org.glassfish.runnablejar.commandline.CommandLineParser;
4141

4242
import static java.lang.System.exit;
43+
import static java.util.logging.Level.CONFIG;
4344
import static java.util.logging.Level.FINE;
4445
import static java.util.logging.Level.INFO;
4546
import 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();

0 commit comments

Comments
 (0)