This is an automated email from the ASF dual-hosted git repository.

smarthi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/opennlp.git


The following commit(s) were added to refs/heads/master by this push:
     new 5321c7f  OPENNLP-1117: Fix cmd line training time
5321c7f is described below

commit 5321c7ff2ed082524bc319e44f0aedf7ed8960cf
Author: thygesen <[email protected]>
AuthorDate: Sun Jul 16 10:28:48 2017 +0200

    OPENNLP-1117: Fix cmd line training time
---
 opennlp-tools/src/main/java/opennlp/tools/cmdline/CLI.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opennlp-tools/src/main/java/opennlp/tools/cmdline/CLI.java 
b/opennlp-tools/src/main/java/opennlp/tools/cmdline/CLI.java
index 487bfcf..1d25127 100644
--- a/opennlp-tools/src/main/java/opennlp/tools/cmdline/CLI.java
+++ b/opennlp-tools/src/main/java/opennlp/tools/cmdline/CLI.java
@@ -279,6 +279,6 @@ public final class CLI {
     }
 
     final long endTime = System.currentTimeMillis();
-    System.out.format("Execution time: %.3f seconds\n", (endTime - startTime) 
/ 1000.0);
+    System.err.format("Execution time: %.3f seconds\n", (endTime - startTime) 
/ 1000.0);
   }
 }

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to