You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by se...@apache.org on 2019/01/10 17:38:23 UTC

svn commit: r1850966 - /ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java

Author: seanfinan
Date: Thu Jan 10 17:38:22 2019
New Revision: 1850966

URL: http://svn.apache.org/viewvc?rev=1850966&view=rev
Log:
Making the check cTAKES.error.log statement more blatant

Modified:
    ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java

Modified: ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java?rev=1850966&r1=1850965&r2=1850966&view=diff
==============================================================================
--- ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java (original)
+++ ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/pipeline/PiperFileRunner.java Thu Jan 10 17:38:22 2019
@@ -86,7 +86,11 @@ final public class PiperFileRunner {
          try {
             final PrintStream stream = new PrintStream( logPath );
             multE.printStackTrace( stream );
-            LOGGER.info( "For more information please see log file " + logPath );
+            LOGGER.info( "\nFor more information please see log file " + logPath );
+            LOGGER.info( "This is a log file on your machine listing information that may be useful in debugging your failed run." );
+            LOGGER.info(
+                  "Seriously, don't ignore this message.  If you want to get to the root of a problem, check the error log file " +
+                  logPath );
          } catch ( FileNotFoundException fnfE ) {
             LOGGER.warn( "Could not write to log file " + logPath );
             multE.printStackTrace();