mirror of https://github.com/Radarr/Radarr
Log startup location, log number of results from feed
This commit is contained in:
parent
8885bbb60f
commit
176f3e0563
|
@ -36,7 +36,7 @@ namespace NzbDrone.Core.Indexers
|
||||||
|
|
||||||
var result = Fetch(indexer, indexer.RecentFeed);
|
var result = Fetch(indexer, indexer.RecentFeed);
|
||||||
|
|
||||||
_logger.Debug("Finished processing feeds from " + indexer);
|
_logger.Debug("Finished processing feeds from {0} found {1} releases", indexer, result.Count);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ namespace NzbDrone.Host
|
||||||
GlobalExceptionHandlers.Register();
|
GlobalExceptionHandlers.Register();
|
||||||
IgnoreCertErrorPolicy.Register();
|
IgnoreCertErrorPolicy.Register();
|
||||||
|
|
||||||
Logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
|
Logger.Info("Starting NzbDrone - {0} - Version {1}", Assembly.GetCallingAssembly().Location, Assembly.GetExecutingAssembly().GetName().Version);
|
||||||
|
|
||||||
if (!PlatformValidation.IsValidate(userAlert))
|
if (!PlatformValidation.IsValidate(userAlert))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue