made wakatime.log a hidden file

This commit is contained in:
Alan Hamlett 2013-06-25 18:00:45 -07:00
parent ea301e00a9
commit 04c4220663
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:
touch ~/wakatime.log; chmod u+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='~/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))