From b1c7fd04a8501ec14a4734fe66037d5539f1fa49 Mon Sep 17 00:00:00 2001 From: albert Date: Fri, 12 Feb 2010 16:52:25 -0500 Subject: [PATCH] removed debugging log statements --- app/models/tag_implication.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/models/tag_implication.rb b/app/models/tag_implication.rb index 3d68044ec..b5c793519 100644 --- a/app/models/tag_implication.rb +++ b/app/models/tag_implication.rb @@ -47,7 +47,6 @@ class TagImplication < ActiveRecord::Base def update_descendant_names self.descendant_names = descendants.join(" ") - self.class.logger.debug "#{antecedent_name}> updating descendants to #{descendant_names}" end def update_descendant_names!(updater_id, updater_ip_addr) @@ -59,7 +58,6 @@ class TagImplication < ActiveRecord::Base def update_descendant_names_for_parent if parent - self.class.logger.debug "#{antecedent_name}> updating parent #{parent.antecedent_name}" parent.update_descendant_names!(updater_id, updater_ip_addr) end end