Add: Show error if deletion of Schedules.db file fails.

This commit is contained in:
Javier Pastor 2019-11-21 00:22:43 +01:00
commit 7750fa50cf

View file

@ -168,8 +168,9 @@ namespace Ombi
File.Delete("Schedules.db");
}
}
catch (Exception)
catch (Exception e)
{
_log.LogError(e.ToString());
}
}