diff --git a/source/de/anomic/plasma/plasmaCrawlStacker.java b/source/de/anomic/plasma/plasmaCrawlStacker.java index 259034273..2c5a3a741 100644 --- a/source/de/anomic/plasma/plasmaCrawlStacker.java +++ b/source/de/anomic/plasma/plasmaCrawlStacker.java @@ -868,7 +868,7 @@ public final class plasmaCrawlStacker { } } } catch (InterruptedException ex) { - serverLog.logInfo("STACKCRAWL-POOL","Interruption of thread '" + this.getName() + "' detected."); + serverLog.logFiner("STACKCRAWL-POOL","Interruption of thread '" + this.getName() + "' detected."); } finally { if (plasmaCrawlStacker.this.theWorkerPool != null && !this.destroyed) plasmaCrawlStacker.this.theWorkerPool.invalidateObject(this); diff --git a/source/de/anomic/plasma/plasmaCrawlWorker.java b/source/de/anomic/plasma/plasmaCrawlWorker.java index 950102f5c..def3467dd 100644 --- a/source/de/anomic/plasma/plasmaCrawlWorker.java +++ b/source/de/anomic/plasma/plasmaCrawlWorker.java @@ -189,7 +189,7 @@ public final class plasmaCrawlWorker extends Thread { } } } catch (InterruptedException ex) { - serverLog.logInfo("CRAWLER-POOL","Interruption of thread '" + this.getName() + "' detected."); + serverLog.logFiner("CRAWLER-POOL","Interruption of thread '" + this.getName() + "' detected."); } finally { if (this.myPool != null && !this.destroyed) this.myPool.invalidateObject(this); diff --git a/source/de/anomic/server/serverCore.java b/source/de/anomic/server/serverCore.java index d1a69b6d6..db6a17625 100644 --- a/source/de/anomic/server/serverCore.java +++ b/source/de/anomic/server/serverCore.java @@ -955,7 +955,7 @@ public final class serverCore extends serverAbstractThread implements serverThre } } } catch (InterruptedException ex) { - serverLog.logInfo("SESSION-POOL","Interruption of thread '" + this.getName() + "' detected."); + serverLog.logFiner("SESSION-POOL","Interruption of thread '" + this.getName() + "' detected."); } finally { if (serverCore.this.theSessionPool != null && !this.destroyed) serverCore.this.theSessionPool.invalidateObject(this);