Example #1
0
 public ActionResult DownloadTVThemeSongsRequest()
 {
     _logger.LogInformation("Downloading TV Theme Songs");
     _themeSongsManager.DownloadAllThemeSongs();
     _logger.LogInformation("Completed");
     return(NoContent());
 }
 public Task Execute(CancellationToken cancellationToken, IProgress <double> progress)
 {
     _logger.LogInformation("Starting plugin, Downloading TV Theme Songs...");
     _themeSongsManager.DownloadAllThemeSongs();
     _logger.LogInformation("All theme songs downloaded");
     return(Task.CompletedTask);
 }
Example #3
0
 public void Post(DownloadRequest request)
 {
     _logger.LogInformation("Starting a manual refresh, looking up for repeated versions");
     _themeSongsManager.DownloadAllThemeSongs();
     _logger.LogInformation("Completed refresh");
 }