Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-11-17 03:24:42 +0300
committerMichael Kozono <mkozono@gmail.com>2017-11-17 03:51:39 +0300
commitf28af335b6efd2bc765d2eb1740d240c88016481 (patch)
tree9b91f8e2c940f987e5459a85a70a6ab3db06f53f
parentde11ddb98700f328e515e7e3672222b758b2556d (diff)
Log the find command used
-rw-r--r--lib/gitlab/background_migration/prepare_untracked_uploads.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/prepare_untracked_uploads.rb b/lib/gitlab/background_migration/prepare_untracked_uploads.rb
index e0c1daaccf7..853c9810359 100644
--- a/lib/gitlab/background_migration/prepare_untracked_uploads.rb
+++ b/lib/gitlab/background_migration/prepare_untracked_uploads.rb
@@ -82,6 +82,8 @@ module Gitlab
cmd = %w[ionice -c Idle] + cmd if ionice_is_available?
+ Rails.logger.info "PrepareUntrackedUploads find command: \"#{cmd.join(' ')}\""
+
cmd
end