mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 02:27:13 +00:00
Downgraded more logs
This commit is contained in:
parent
623857eb90
commit
6f4a9f577e
3 changed files with 6 additions and 6 deletions
|
@ -114,7 +114,7 @@ internal static EpisodeParseResult ParseEpisodeInfo(string title)
|
|||
return parsedEpisode;
|
||||
}
|
||||
}
|
||||
Logger.Warn("Unable to parse text into episode info. {0}", title);
|
||||
Logger.Debug("Unable to parse text into episode info. {0}", title);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
@ -61,13 +61,13 @@ public IndexerSetting Settings
|
|||
/// </summary>
|
||||
public void Fetch()
|
||||
{
|
||||
_logger.Info("Fetching feeds from " + Settings.Name);
|
||||
_logger.Debug("Fetching feeds from " + Settings.Name);
|
||||
|
||||
foreach (var url in Urls)
|
||||
{
|
||||
try
|
||||
{
|
||||
_logger.Debug("Downloading RSS " + url);
|
||||
_logger.Trace("Downloading RSS " + url);
|
||||
var feed = SyndicationFeed.Load(_httpProvider.DownloadXml(url)).Items;
|
||||
|
||||
foreach (var item in feed)
|
||||
|
|
|
@ -70,7 +70,7 @@ public virtual bool RunScheduled()
|
|||
{
|
||||
if (_isRunning)
|
||||
{
|
||||
Logger.Warn("Another instance of this job is already running. Ignoring request.");
|
||||
Logger.Info("Another instance of this job is already running. Ignoring request.");
|
||||
return false;
|
||||
}
|
||||
_isRunning = true;
|
||||
|
@ -113,7 +113,7 @@ public bool BeginExecute(Type jobType, int targetId = 0)
|
|||
{
|
||||
if (_isRunning)
|
||||
{
|
||||
Logger.Warn("Another job is already running. Ignoring request.");
|
||||
Logger.Info("Another job is already running. Ignoring request.");
|
||||
return false;
|
||||
}
|
||||
_isRunning = true;
|
||||
|
|
Loading…
Reference in a new issue