debug process
This commit is contained in:
parent
e6b6712c1d
commit
ab915bc1cd
2 changed files with 11 additions and 2 deletions
9
pesterchum_debug.py
Normal file
9
pesterchum_debug.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# runs pesterchum but appends stdout/err to log file
|
||||||
|
import subprocess
|
||||||
|
import datetime
|
||||||
|
f = open("debug.log", 'a')
|
||||||
|
d = datetime.datetime.now()
|
||||||
|
f.write("=== PESTERCHUM DEBUG %s ===\n" % d.strftime("%m-%d-%y %H-%M"))
|
||||||
|
p = subprocess.Popen("pesterchum.exe", stdout=f, stderr=subprocess.STDOUT)
|
||||||
|
p.wait()
|
||||||
|
f.close()
|
|
@ -4,8 +4,8 @@ import time
|
||||||
|
|
||||||
USER_TYPE = "dev"
|
USER_TYPE = "dev"
|
||||||
|
|
||||||
_pcMajor = "3.14"
|
_pcMajor = "3.41"
|
||||||
_pcMinor = "2"
|
_pcMinor = "0"
|
||||||
_pcStatus = "B" # A = alpha
|
_pcStatus = "B" # A = alpha
|
||||||
# B = beta
|
# B = beta
|
||||||
# RC = release candidate
|
# RC = release candidate
|
||||||
|
|
Loading…
Reference in a new issue