private static void processingTaskFinished(object sender, IndexingTask task)
 {
     Log.Debug($"facade end processing {task.Action} #{task.ContentId} length:{task.FileLength}b attempt:{task.Attempts} {task.Path} resolution: {task.GetState()}");
 }
Exemple #2
0
        private void processingTaskFinished(object sender, IndexingTask task)
        {
            _log.Info($"end processing task {task.Action} #{task.ContentId} length:{task.FileLength}b attempt:{task.Attempts} {task.Path} resolution: {task.GetState()}");

            IndexChangeTime = DateTime.UtcNow;
            IndexChanged?.Invoke(this, new EventArgs());
        }