summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-05-10 22:07:13 -0700
committerStan Hu <stanhu@gmail.com>2016-05-10 22:07:13 -0700
commitf2548f3f2b3dcd1c6ecbae20af28933f3ab88fdd (patch)
tree84c562b825bd06d3a9dc810606e24cc7259597f4 /app
parentae25c19ee5dcfae8ea977b2014657ecc6c3eaf3d (diff)
downloadgitlab-ce-f2548f3f2b3dcd1c6ecbae20af28933f3ab88fdd.tar.gz
Improve log message when a project is destroyed to include the namespace
Diffstat (limited to 'app')
-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