Logged the arguements of run method
This commit is contained in:
parent
9241c90660
commit
8a960353db
@ -31,5 +31,8 @@ public class SpringBootConsoleApplication implements CommandLineRunner {
|
|||||||
@Override
|
@Override
|
||||||
public void run(String... args) throws Exception {
|
public void run(String... args) throws Exception {
|
||||||
LOG.info("EXECUTING : command line runner");
|
LOG.info("EXECUTING : command line runner");
|
||||||
|
for (int i = 0; i < args.length; ++i) {
|
||||||
|
LOG.info("args[{}]: {}", i, args[i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user