mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Fix logging message order
This commit is contained in:
parent
cde891ee16
commit
d34a0902d1
3 changed files with 3 additions and 3 deletions
|
|
@ -133,7 +133,7 @@ public class Job extends Thread {
|
|||
if(row == null && producerLive.get() == false) {
|
||||
rowsInserted += arraySum(insertStatement.executeBatch());
|
||||
dConn.commit();
|
||||
log.info(String.format("%s - Inserted a total of %s of %s notified rows into %s",jobName,rowNum,rowsInserted,name));
|
||||
log.info(String.format("%s - Inserted a total of %s of %s notified rows into %s",jobName,rowsInserted,rowNum,name));
|
||||
return;
|
||||
}
|
||||
if(threadsExit.get()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue