From 8ad5ff0860bbc3610d39b5b1b43d91aae71cb9ae Mon Sep 17 00:00:00 2001 From: Ofirfr Date: Sat, 11 Jan 2025 23:30:27 +0200 Subject: [PATCH] spotDL exec command debug log --- app/tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/tasks.py b/app/tasks.py index c4506dc..500b3cd 100644 --- a/app/tasks.py +++ b/app/tasks.py @@ -247,7 +247,8 @@ def download_missing_tracks(self): app.logger.debug(f"Using proxy: {app.config['SPOTDL_PROXY']}") command.append("--proxy") command.append(app.config['SPOTDL_PROXY']) - + + app.logger.debug(f"Executing the spotDL command: {' '.join(command)}") result = subprocess.run(command, capture_output=True, text=True, timeout=90) if result.returncode == 0: track.downloaded = True