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
|
||||
public void run(String... args) throws Exception {
|
||||
LOG.info("EXECUTING : command line runner");
|
||||
for (int i = 0; i < args.length; ++i) {
|
||||
LOG.info("args[{}]: {}", i, args[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue