]> source.dussan.org Git - redmine.git/commitdiff
Adjust reposman log messages.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 1 Jun 2017 20:29:42 +0000 (20:29 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 1 Jun 2017 20:29:42 +0000 (20:29 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16593 e93f8b46-1217-0410-a6f0-8f06a7374b81

extra/svn/reposman.rb

index bc5d64bd3243b0044f85b97895053e38aac6604c..4f748acf0137cbfc4c04d0c7f62028c8355b378c 100755 (executable)
@@ -163,7 +163,7 @@ class Project < ActiveResource::Base
   self.format = :json
 end
 
-log("querying Redmine for projects...", :level => 1);
+log("querying Redmine for active projects with repository module enabled...", :level => 1);
 
 $redmine_host.gsub!(/^/, "http://") unless $redmine_host.match("^https?://")
 $redmine_host.gsub!(/\/$/, '')
@@ -214,8 +214,6 @@ def mswin?
 end
 
 projects.each do |project|
-  log("treating project #{project.name}", :level => 1)
-
   if project.identifier.empty?
     log("\tno identifier for project #{project.name}")
     next
@@ -223,6 +221,7 @@ projects.each do |project|
     log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
     next;
   end
+  log("processing project #{project.identifier} (#{project.name})", :level => 1)
 
   repos_path = File.join($repos_base, project.identifier).gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR)