Added 2 log messages in SubversionAdapter#entries.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@743 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
25012efc9c
commit
83eed09109
|
@ -81,10 +81,12 @@ module Redmine
|
|||
})
|
||||
})
|
||||
end
|
||||
rescue
|
||||
rescue Exception => e
|
||||
logger.info("Error parsing svn output: #{e.message}")
|
||||
end
|
||||
end
|
||||
return nil if $? && $?.exitstatus != 0
|
||||
logger.debug("Found #{entries.size} entries in the repository for #{target(path)}") if logger && logger.debug?
|
||||
entries.sort_by_name
|
||||
rescue Errno::ENOENT => e
|
||||
raise CommandFailed
|
||||
|
|
Loading…
Reference in New Issue