Author: kwright
Date: Fri May 12 08:58:40 2017
New Revision: 1794944

URL: http://svn.apache.org/viewvc?rev=1794944&view=rev
Log:
Comment out the debugging statements I put in

Modified:
    
manifoldcf/branches/CONNECTORS-1425/connectors/tikaservice/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/TikaExtractor.java

Modified: 
manifoldcf/branches/CONNECTORS-1425/connectors/tikaservice/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/TikaExtractor.java
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1425/connectors/tikaservice/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/TikaExtractor.java?rev=1794944&r1=1794943&r2=1794944&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1425/connectors/tikaservice/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/TikaExtractor.java
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1425/connectors/tikaservice/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/TikaExtractor.java
 Fri May 12 08:58:40 2017
@@ -604,9 +604,9 @@ public class TikaExtractor extends org.a
             HttpEntity entity = new InputStreamEntity(ds.getInputStream());
             httpPut.setEntity(entity);
             try {
-              System.out.println("About to PUT");
+              //System.out.println("About to PUT");
               response = this.httpClient.execute(tikaHost, httpPut);
-              System.out.println("PUT successful");
+              //System.out.println("PUT successful");
             } catch (IOException e) {
               // Retry 3 times, 10000 ms between retries, and abort if doesn't 
work
               final long currentTime = System.currentTimeMillis();
@@ -657,7 +657,9 @@ public class TikaExtractor extends org.a
             entity = new InputStreamEntity(ds.getInputStream());
             httpPut.setEntity(entity);
             try {
+              //System.out.println("About to do a content PUT");
               response = this.httpClient.execute(tikaHost, httpPut);
+              //System.out.println("... content PUT succeeded");
             } catch (IOException e) {
               // Retry 3 times, 10000 ms between retries, and abort if doesn't 
work
               final long currentTime = System.currentTimeMillis();


Reply via email to