diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-05-26 13:37:49 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-05-26 13:37:49 +0300 |
commit | 3272620f724737f4dbb5e8c02f1610946435cd29 (patch) | |
tree | ae9fb3daccdf6b008ccb9c31d435e9548113c6ee /lib/gitlabhq/logger.rb | |
parent | 8ceb94081ac516ccaed43f0f4841725a4f9fe2db (diff) | |
download | gitlab-ce-3272620f724737f4dbb5e8c02f1610946435cd29.tar.gz |
lib/ refactoring. Module Gitlabhq renamed to Gitlab
Diffstat (limited to 'lib/gitlabhq/logger.rb')
-rw-r--r-- | lib/gitlabhq/logger.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/gitlabhq/logger.rb b/lib/gitlabhq/logger.rb deleted file mode 100644 index 08b4bde0b0c..00000000000 --- a/lib/gitlabhq/logger.rb +++ /dev/null @@ -1,8 +0,0 @@ -module Gitlabhq - class Logger - def self.error(message) - @@logger ||= ::Logger.new(File.join(Rails.root, "log/githost.log")) - @@logger.error(message) - end - end -end |