Log view now uses proper paging so it doesn't take a year to load up each page.

This commit is contained in:
Mark McDowall 2011-09-02 23:41:50 -07:00
commit 780abad3f7
3 changed files with 13 additions and 5 deletions

View file

@ -21,6 +21,11 @@ namespace NzbDrone.Core.Instrumentation
return _database.Fetch<Log>();
}
public Page<Log> GetPagedLogs(int pageNumber, int pageSize)
{
return _database.Page<Log>(pageNumber, pageSize, "SELECT * FROM Logs ORDER BY Time DESC");
}
public void DeleteAll()
{
_database.Delete<Log>("");