log -> error, remove unnecesary logs

This commit is contained in:
Kendall Garner
2025-06-26 21:17:59 -07:00
parent fb584b35a9
commit 63e3b97bca
10 changed files with 9 additions and 12 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ ipcMain.on('update-song', (_event, song: QueueSong | undefined) => {
'xesam:userRating': song.userRating ? song.userRating / 5 : null,
};
} catch (err) {
console.log(err);
console.error(err);
}
});