satellites logs

This commit is contained in:
Dmitriy Zaporozhets 2013-01-29 12:12:24 +02:00
parent 7121a58eb9
commit c84675ee06
2 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,13 @@
module Gitlab
module Satellite
class Logger < Gitlab::Logger
def self.file_name
'satellites.log'
end
def format_message(severity, timestamp, progname, msg)
"#{timestamp.to_s(:long)}: #{msg}\n"
end
end
end
end

View File

@ -13,6 +13,10 @@ module Gitlab
@project = project
end
def log message
Gitlab::Satellite::Logger.error(message)
end
def raise_no_satellite
raise SatelliteNotExistError.new("Satellite doesn't exist")
end
@ -29,10 +33,13 @@ module Gitlab
output, status = popen("git clone #{project.url_to_repo} #{path}",
Gitlab.config.satellites.path)
log("PID: #{project.id}: git clone #{project.url_to_repo} #{path}")
log("PID: #{project.id}: -> #{output}")
if status.zero?
true
else
Gitlab::GitLogger.error("Failed to create satellite for #{project.name_with_namespace}")
log("Failed to create satellite for #{project.name_with_namespace}")
false
end
end