mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 07:12:40 +00:00
Fix lint issues on backend
This commit is contained in:
parent
4251ca64c1
commit
8681f3b447
2 changed files with 2 additions and 1 deletions
|
@ -25,7 +25,7 @@ public void artist_page()
|
||||||
|
|
||||||
var imageName = MethodBase.GetCurrentMethod().Name;
|
var imageName = MethodBase.GetCurrentMethod().Name;
|
||||||
TakeScreenshot(imageName);
|
TakeScreenshot(imageName);
|
||||||
|
|
||||||
_page.Find(By.CssSelector("div[class*='ArtistIndex']")).Should().NotBeNull();
|
_page.Find(By.CssSelector("div[class*='ArtistIndex']")).Should().NotBeNull();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ public string[] GetLogFileLines(string filename)
|
||||||
_logger.Error(ex, "Failed to get log lines");
|
_logger.Error(ex, "Failed to get log lines");
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger.Info(ex, "Failed to get log lines, attempt {0}/{1}", attempt, attempts);
|
_logger.Info(ex, "Failed to get log lines, attempt {0}/{1}", attempt, attempts);
|
||||||
Thread.Sleep(10);
|
Thread.Sleep(10);
|
||||||
attempt++;
|
attempt++;
|
||||||
|
|
Loading…
Reference in a new issue