Author: kwright
Date: Thu Nov 21 18:15:14 2013
New Revision: 1544274
URL: http://svn.apache.org/r1544274
Log:
Service interruption while seeding should not be logged as an ERROR.
Modified:
manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/SeedingThread.java
Modified:
manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/SeedingThread.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/SeedingThread.java?rev=1544274&r1=1544273&r2=1544274&view=diff
==============================================================================
---
manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/SeedingThread.java
(original)
+++
manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/SeedingThread.java
Thu Nov 21 18:15:14 2013
@@ -161,7 +161,7 @@ public class SeedingThread extends Threa
catch (ServiceInterruption e)
{
// Note the service interruption
- Logging.threads.error("Service interruption for job
"+jobID,e);
+ Logging.threads.warn("Service interruption for job
"+jobID,e);
long retryInterval = e.getRetryTime() - currentTime;
if (retryInterval >= 0L && retryInterval < waitTime)
waitTime = retryInterval;