From 02d76b101bf01c5b6c21cc85268b5356a252ad51 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 6 Mar 2011 15:16:28 -0600 Subject: [PATCH] do not debug log --- autoload/vundle/installer.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 639b23f..74ba57c 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -3,7 +3,6 @@ func! vundle#installer#install(bang, ...) let bundles = (a:1 == '') ? \ s:reload_bundles() : \ map(copy(a:000), 'vundle#config#init_bundle(v:val, {})') - call s:log(bundles) for bundle in bundles | call s:install(a:bang, bundle) | endfor call vundle#installer#helptags(bundles) endf