summaryrefslogtreecommitdiffstats
path: root/lib/git/lib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/lib.rb')
-rw-r--r--lib/git/lib.rb18
1 files changed, 12 insertions, 6 deletions
diff --git a/lib/git/lib.rb b/lib/git/lib.rb
index c6d3580..293e00b 100644
--- a/lib/git/lib.rb
+++ b/lib/git/lib.rb
@@ -11,8 +11,10 @@ module Git
@git_index_file = nil
@git_work_dir = nil
@path = nil
-
- def initialize(base = nil)
+
+ @logger = nil
+
+ def initialize(base = nil, logger = nil)
if base.is_a?(Git::Base)
@git_dir = base.repo.path
@git_index_file = base.index.path if base.index
@@ -22,6 +24,9 @@ module Git
@git_index_file = base[:index]
@git_work_dir = base[:working_directory]
end
+ if logger
+ @logger = logger
+ end
end
def init
@@ -481,10 +486,11 @@ module Git
out = `git #{cmd} #{opts} 2>&1`.chomp
end
- #puts git_cmd
- #puts out
- #puts
-
+ if @logger
+ @logger.info(git_cmd)
+ @logger.debug(out)
+ end
+
if $?.exitstatus > 0
if $?.exitstatus == 1 && out == ''
return ''