Fix logging message order

This commit is contained in:
Derry Hamilton 2019-07-12 10:33:18 +01:00
parent cde891ee16
commit d34a0902d1
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<groupId>com.rasilon.ujetl</groupId> <groupId>com.rasilon.ujetl</groupId>
<artifactId>CopyingApp</artifactId> <artifactId>CopyingApp</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>2.0.3</version> <version>2.0.4</version>
<name>uJETL</name> <name>uJETL</name>
<url>https://github.com/rasilon/ujetl</url> <url>https://github.com/rasilon/ujetl</url>
<properties> <properties>

View file

@ -133,7 +133,7 @@ public class Job extends Thread {
if(row == null && producerLive.get() == false) { if(row == null && producerLive.get() == false) {
rowsInserted += arraySum(insertStatement.executeBatch()); rowsInserted += arraySum(insertStatement.executeBatch());
dConn.commit(); 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; return;
} }
if(threadsExit.get()) { if(threadsExit.get()) {

View file

@ -1,6 +1,6 @@
Summary: Java app to facilitate moving data between databases. Summary: Java app to facilitate moving data between databases.
Name: uJETL Name: uJETL
Version: 2.0.3 Version: 2.0.4
Release: 1 Release: 1
Group: Applications/Database Group: Applications/Database
License: All rights reserved. License: All rights reserved.