Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
change template dir not found echo from error to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ervandew committed Feb 21, 2012
1 parent 889d5d9 commit 3cd1c25
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions org.eclim.core/vim/eclim/autoload/eclim/common/template.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"
" License:
"
" Copyright (C) 2005 - 2011 Eric Van Dewoestine
" Copyright (C) 2005 - 2012 Eric Van Dewoestine
"
" This program is free software: you can redistribute it and/or modify
" it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -68,7 +68,8 @@ endfunction " }}}
function! s:FindTemplate()
let templatesDir = expand(g:EclimTemplateDir)
if !isdirectory(templatesDir)
call eclim#util#EchoError("No such directory: " . templatesDir)
call eclim#util#EchoDebug(
\ 'Template dir not found (g:EclimTemplateDir): ' . templatesDir)
return ''
endif

Expand Down

0 comments on commit 3cd1c25

Please sign in to comment.