Fix:Downloading podcasts with watcher causing duplicate episodes #2122

This commit is contained in:
advplyr
2023-09-30 15:12:37 -05:00
parent 1dc369180c
commit 3d96749d38
3 changed files with 20 additions and 9 deletions

View File

@ -92,7 +92,7 @@ class Logger {
* @param {...any} args
*/
dev(...args) {
if (!this.isDev) return
if (!this.isDev || process.env.HIDE_DEV_LOGS === '1') return
console.log(`[${this.timestamp}] DEV:`, ...args)
}