From af9aace68463cdfd6b20f4eb25e2a5757038ae27 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 15 May 2015 21:01:35 +0200 Subject: [PATCH] logfiles in false Dir --- boswatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boswatch.py b/boswatch.py index 9a663f6..a953454 100644 --- a/boswatch.py +++ b/boswatch.py @@ -203,7 +203,7 @@ try: rtl_fm = subprocess.Popen("rtl_fm -d "+str(device)+" -f "+str(freq)+" -M fm -s 22050 -p "+str(error)+" -E DC -F 0 -l "+str(squelch)+" -g 100", #stdin=rtl_fm.stdout, stdout=subprocess.PIPE, - stderr=open(script_path+"/log_rtl.txt","a"), + stderr=open(script_path+"/log/log_rtl.txt","a"), shell=True) except: log("cannot start rtl_fm","error") @@ -214,7 +214,7 @@ try: multimon_ng = subprocess.Popen("multimon-ng "+str(demodulation)+" -f alpha -t raw /dev/stdin - ", stdin=rtl_fm.stdout, stdout=subprocess.PIPE, - stderr=open(script_path+"/log_mon.txt","a"), + stderr=open(script_path+"/log/log_mon.txt","a"), shell=True) except: log("cannot start multimon-ng","error")