removed debugging log statements

This commit is contained in:
albert
2010-02-12 16:52:25 -05:00
parent 11ecf9739b
commit b1c7fd04a8

View File

@@ -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