Skip to content
Snippets Groups Projects
Commit 0b4d0f82 authored by a.croix's avatar a.croix
Browse files

Remove some old comments line

parent f1bc92e9
No related branches found
No related tags found
1 merge request!2New Log system
......@@ -58,10 +58,6 @@ class WowaJob implements ShouldQueue
$this->wowa->save();
return;
}
//$processor = new LogProcessor();
//$processor->setJobId($this->wowa->id);
//$logg->pushProcessor($processor);
try {
$this->wowa->status = Wowa::STATE_COLLECTION;
......@@ -76,7 +72,6 @@ class WowaJob implements ShouldQueue
}
$this->evidences[] = $scores_references;
}
//\Log::info(($feed->id * 100) / $this->feedback_number . " | Evidences collection");
$logg->info(($feed->id * 100) / $this->feedback_number . " | Evidences collection");
});
} catch (\Exception $e) {
......@@ -84,9 +79,6 @@ class WowaJob implements ShouldQueue
$logg->error("Error during retrieving evidences");
$this->wowa->save();
}
//$processor->setTrainingBooleanTrue();
//$processor->setJobId($this->wowa->id);
//$logg->pushProcessor($processor);
$training_prameters = new TrainerParameters(
$logg,
$this->wowa->population,
......@@ -116,7 +108,6 @@ class WowaJob implements ShouldQueue
$this->wowa->pr = $solution->getAucPr();
$this->wowa->status = Wowa::STATE_SUCCESS;
$this->wowa->save();
Log::where('job_id', $this->wowa->id)->delete();
}
public function failed()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment