remove some unnecessary logging

This commit is contained in:
aria 2024-05-02 07:25:40 -04:00
parent 0d1544c98e
commit cd6a8c69ff

View file

@ -58,8 +58,7 @@ export default class Tidal implements Streamer {
if (!this.refreshToken) return
if (await this.sessionValid()) return
const success = await this.refresh()
if (success) console.log(`[tidal] Refreshed tokens successfully`)
else console.log(`[tidal] Failed to refresh tokens, this could be a bad sign`)
if (!success) console.log(`[tidal] Failed to refresh tokens, this could be a bad sign`)
}
getReady()
}