From d34a0902d14031ca6cbac3b3185988f394c7ea68 Mon Sep 17 00:00:00 2001 From: Derry Hamilton Date: Fri, 12 Jul 2019 10:33:18 +0100 Subject: [PATCH] Fix logging message order --- pom.xml | 2 +- src/main/java/com/rasilon/ujetl/Job.java | 2 +- uJETL.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ffc64ce..5c2df24 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma com.rasilon.ujetl CopyingApp jar - 2.0.3 + 2.0.4 uJETL https://github.com/rasilon/ujetl diff --git a/src/main/java/com/rasilon/ujetl/Job.java b/src/main/java/com/rasilon/ujetl/Job.java index 5afb96f..7a0b273 100644 --- a/src/main/java/com/rasilon/ujetl/Job.java +++ b/src/main/java/com/rasilon/ujetl/Job.java @@ -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()) { diff --git a/uJETL.spec b/uJETL.spec index 4eb4838..280a886 100644 --- a/uJETL.spec +++ b/uJETL.spec @@ -1,6 +1,6 @@ Summary: Java app to facilitate moving data between databases. Name: uJETL -Version: 2.0.3 +Version: 2.0.4 Release: 1 Group: Applications/Database License: All rights reserved.