moved wakatime.log to home folder

This commit is contained in:
Alan Hamlett 2013-06-25 17:59:16 -07:00
parent 67a064cae3
commit ea301e00a9
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ Add `Bundle 'wakatime/vim-wakatime'` to your `~/.vimrc`
3) Run these shell commands:
sudo touch /var/log/wakatime.log && sudo chmod a+w !$
touch ~/wakatime.log; chmod u+w !$
echo "api_key=MY_API_KEY" > ~/.wakatime
vim +BundleInstall +qall

View File

@ -173,7 +173,7 @@ def main(argv):
if args.verbose:
level = log.DEBUG
del args.verbose
log.basicConfig(filename='/var/log/wakatime.log', format='%(asctime)s vim-wakatime/'+version+' %(levelname)s %(message)s', datefmt='%Y-%m-%dT%H:%M:%SZ', level=level)
log.basicConfig(filename='~/wakatime.log', format='%(asctime)s vim-wakatime/'+version+' %(levelname)s %(message)s', datefmt='%Y-%m-%dT%H:%M:%SZ', level=level)
tags = tags_from_path(args.task)
project = project_from_path(args.task)
send_action(project=project, tags=tags, **vars(args))