diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 95e1a447..5285702d 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.6.0-9' +let g:_SYNTASTIC_VERSION = '3.6.0-10' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/plugin/syntastic/checker.vim b/plugin/syntastic/checker.vim index 88d8a1f3..d8a611e9 100644 --- a/plugin/syntastic/checker.vim +++ b/plugin/syntastic/checker.vim @@ -81,8 +81,7 @@ function! g:SyntasticChecker.getVersion(...) " {{{2 if !exists('self._version') let command = a:0 ? a:1 : self.getExecEscaped() . ' --version' let version_output = system(command) - call syntastic#log#debug( g:_SYNTASTIC_DEBUG_CHECKERS, - \ self._filetype . '/' . self._name . ': output of ' . string(command) . ': ' . + call self.log('getVersion: ' . string(command) . ': ' . \ string(split(version_output, "\n", 1)) . \ (v:shell_error ? ' (exit code ' . v:shell_error . ')' : '') ) call self.setVersion(syntastic#util#parseVersion(version_output))