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:
parent
4844e579e0
commit
3742b6a092
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user