diff options
| author | Nick Thomas <nick@gitlab.com> | 2018-05-10 13:21:40 +0000 | 
|---|---|---|
| committer | Nick Thomas <nick@gitlab.com> | 2018-05-10 13:21:40 +0000 | 
| commit | dd72887864835e78b62dfc9807d50029b6c39536 (patch) | |
| tree | 90992393300171b7e2b49afbf7485767867b0bf8 | |
| parent | b7e9c968c24e5d380f5522067e46170a351c6b6c (diff) | |
| parent | f7eca91677722f2cdaa57ec95e10075aae659925 (diff) | |
| download | gitlab-ce-dd72887864835e78b62dfc9807d50029b6c39536.tar.gz | |
Merge branch '41229-include-the-human-repo-name-in-gitlab-shell-log-when-hashed-storage-is-in-use' into 'master'
Resolve "Include the human repo name in gitlab-shell.log when hashed storage is in use"
Closes #41229
See merge request gitlab-org/gitlab-ce!18870
| -rw-r--r-- | app/services/projects/destroy_service.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/services/projects/destroy_service.rb b/app/services/projects/destroy_service.rb index 71c93660b4b..adbc498d0bf 100644 --- a/app/services/projects/destroy_service.rb +++ b/app/services/projects/destroy_service.rb @@ -87,7 +87,7 @@ module Projects        new_path = removal_path(path)        if mv_repository(path, new_path) -        log_info("Repository \"#{path}\" moved to \"#{new_path}\"") +        log_info(%Q{Repository "#{path}" moved to "#{new_path}" for project "#{project.full_path}"})          project.run_after_commit do            # self is now project | 
