添加调试日志

This commit is contained in:
yafeilee 2014-04-03 00:23:33 +08:00
parent b106c6f8d1
commit eff0640277
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class Comment
after_create do
if ENV['SENDCLOUD_USER'].present? && ENV['ADMIN_USER'].present? && ENV['ADMIN_USER'] =~ /@/
Rails.logger.info 'comment created, comment worker start'
NewCommentWorker.perform_async(self.name, self.content, self.post.title, ENV['ADMIN_USER'])
end
end