Skip to content

Commit

Permalink
*) more verbose thread names
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1471 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
theli committed Jan 28, 2006
1 parent 56e4dbe commit 784fd50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/de/anomic/plasma/plasmaCrawlStacker.java
Expand Up @@ -804,7 +804,7 @@ public final class Worker extends Thread {
private stackCrawlMessage theMsg;

public Worker(ThreadGroup theThreadGroup) {
super(theThreadGroup,"stackCrawlThread");
super(theThreadGroup,"stackCrawlThread_created");
}

public void setStopped(boolean stopped) {
Expand Down Expand Up @@ -878,6 +878,7 @@ public void run() {

private void execute() {
try {
this.setName(plasmaCrawlWorker.threadBaseName + "_" + this.theMsg.url);
String rejectReason = dequeue(this.theMsg);

if (rejectReason != null) {
Expand Down

0 comments on commit 784fd50

Please sign in to comment.