Relax logging

This commit is contained in:
Arkadiusz Fal
2022-12-20 21:41:27 +01:00
parent f058b0c30c
commit 41ac15b204
4 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ struct PlaylistsCacheModel: CacheModel {
}
func retrievePlaylists(account: Account) -> [Playlist] {
logger.info("retrieving cache for \(playlistCacheKey(account))")
logger.debug("retrieving cache for \(playlistCacheKey(account))")
if let json = try? storage?.object(forKey: playlistCacheKey(account)),
let playlists = json.dictionaryValue["playlists"]