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:
authorStan Hu <stanhu@gmail.com>2016-05-11 08:07:13 +0300
committerStan Hu <stanhu@gmail.com>2016-05-11 08:07:13 +0300
commitf2548f3f2b3dcd1c6ecbae20af28933f3ab88fdd (patch)
tree84c562b825bd06d3a9dc810606e24cc7259597f4 /app/services/projects
parentae25c19ee5dcfae8ea977b2014657ecc6c3eaf3d (diff)
Improve log message when a project is destroyed to include the namespace
Diffstat (limited to 'app/services/projects')
-rw-r--r--app/services/projects/destroy_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/projects/destroy_service.rb b/app/services/projects/destroy_service.rb
index 19aab999e00..48a6131b444 100644
--- a/app/services/projects/destroy_service.rb
+++ b/app/services/projects/destroy_service.rb
@@ -35,7 +35,7 @@ module Projects
end
end
- log_info("Project \"#{project.name}\" was removed")
+ log_info("Project \"#{project.path_with_namespace}\" was removed")
system_hook_service.execute_hooks_for(project, :destroy)
true
end