Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c7dfd9dcf1a21431f5428f0cf22cecb8e7be7c23 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix Log Statement Grouping in FreeSpaceSpec

Fixes 
pull/2/head
Qstick 5 years ago committed by GitHub
parent b0afbce97c
commit c7dfd9dcf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,11 +55,11 @@ namespace NzbDrone.Core.MediaFiles.MovieImport.Specifications
}
catch (DirectoryNotFoundException ex)
{
_logger.Error("Unable to check free disk space while importing. " + ex.Message);
_logger.Error(ex, "Unable to check free disk space while importing.");
}
catch (Exception ex)
{
_logger.Error(ex, "Unable to check free disk space while importing: " + localMovie.Path);
_logger.Error(ex, "Unable to check free disk space while importing: {0}", localMovie.Path);
}
return Decision.Accept();

Loading…
Cancel
Save