From dc5d53c9fae84c16a6cadb73a8ec3bd1d619ceac Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Wed, 16 Apr 2025 09:18:20 +0100 Subject: [PATCH] Remove debug logging for organisation name change parameters --- app/controllers/organisation_name_changes_controller.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/controllers/organisation_name_changes_controller.rb b/app/controllers/organisation_name_changes_controller.rb index ab0f0dba4..fd0f45568 100644 --- a/app/controllers/organisation_name_changes_controller.rb +++ b/app/controllers/organisation_name_changes_controller.rb @@ -6,7 +6,6 @@ class OrganisationNameChangesController < ApplicationController @organisation_name_change = @organisation.organisation_name_changes.new(organisation_name_change_params) @organisation_name_change.change_type = :user_change - Rails.logger.debug "Params: #{params[:organisation_name_change]}" if @organisation_name_change.save notice_message = @organisation_name_change.immediate_change ? "Name change saved successfully." : "Name change scheduled for #{@organisation_name_change.formatted_startdate}." redirect_to organisation_path(@organisation), notice: notice_message