improve log descriptions for stale import job removals (#1705)

* improve log descriptions for stale import job removals

* Removed unnecessary log line and instead changed primary log line
This commit is contained in:
Thad Guidry 2018-08-12 02:53:57 -05:00 committed by Antonin Delpeuch
parent 4844e579e0
commit 3742b6a092

View File

@ -312,7 +312,7 @@ public class ImportingManager {
if (job != null && !job.updating && now - job.lastTouched > STALE_PERIOD) {
job.dispose();
jobs.remove(id);
logger.info("Disposed " + id);
logger.info("Removed Stale Import Job ID " + id);
}
}
}