Change logger.debug to logger.warn for PM debug messages

This commit is contained in:
Martin Brennan 2020-01-21 16:11:37 +10:00
parent bff9880d63
commit 88e23d4cfa
2 changed files with 2 additions and 2 deletions

View File

@ -778,7 +778,7 @@ class PostsController < ApplicationController
end
if recipients.blank? || result[:target_usernames].blank?
Rails.logger.debug("Missing recipients for PM! result: #{result.inspect} | params: #{params.inspect}")
Rails.logger.warn("Missing recipients for PM! result: #{result.inspect} | params: #{params.inspect}")
end
result.permit!

View File

@ -171,7 +171,7 @@ class TopicCreator
topic.subtype = TopicSubtype.user_to_user unless topic.subtype
unless @opts[:target_usernames].present? || @opts[:target_emails].present? || @opts[:target_group_names].present?
Rails.logger.debug("Topic PM cannot be created without recipients! opts: #{@opts.inspect}")
Rails.logger.warn("Topic PM cannot be created without recipients! opts: #{@opts.inspect}")
rollback_with!(topic, :no_user_selected)
end