Version 0.2.6. Logging errors from background python program to ~/.wakatime.log

This commit is contained in:
Alan Hamlett 2013-07-17 13:01:01 -07:00
parent 5095de4302
commit 4f21904013

View file

@ -5,7 +5,7 @@ Maintainer: WakaTi.me <support@wakatime.com>
Website: https://www.wakati.me/ Website: https://www.wakati.me/
===========================================================""" ==========================================================="""
__version__ = '0.2.5' __version__ = '0.2.6'
import time import time
import uuid import uuid
@ -62,7 +62,8 @@ def api(targetFile, timestamp, isWrite=False, endtime=0):
if endtime: if endtime:
cmd.extend(['--endtime', str('%f' % endtime)]) cmd.extend(['--endtime', str('%f' % endtime)])
#print(cmd) #print(cmd)
Popen(cmd) with open(expanduser('~/.wakatime.log'), 'a') as stderr:
Popen(cmd, stderr=stderr)
LAST_ACTION = timestamp LAST_ACTION = timestamp
if endtime and endtime > LAST_ACTION: if endtime and endtime > LAST_ACTION:
LAST_ACTION = endtime LAST_ACTION = endtime