My cron jobs aren't running when trying to save the script output to a txt file
Solution 1:
The main reason I can assume is either the log path doesn't exist or you don't have permission to write to the log path.
Try executing the command manually instead of the cron
python3 /script/working/directory/Script.py > /script/working/directory/logs/LOG_"$(date +"%d-%m-%Y")".txt
You will most likely see the error in your terminal.