You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
products = Product.search(JSON.parse(@campaign.q))
xml = Builder::XmlMarkup.new
xml << @campaign.wrapper_begin
products.each do |product|
@campaign.root_elements.each do |element|
xml.tag!(element.tag, element.xml_attributes(product)) do
element.decorators.each do |decorator|
element.cdata ? xml.cdata!(decorator.print_code(product).to_s) : xml << decorator.print_code(product).to_s
end
element.childs.each do |child|
xml.tag!(child.tag, child.xml_attributes(product)) do
child.decorators.each do |decorator|
child.cdata ? xml.cdata!(decorator.print_code(product).to_s) : xml << decorator.print_code(product).to_s
end
end
end
end
end
end
xml << @campaign.wrapper_end
how is this keep loging ? is there a way to disable this - my logs are humongous because of this :)
The text was updated successfully, but these errors were encountered:
grfx1985
changed the title
why generating a xml logs get filled with - - "new" message ?
why generating a xml, fills my logs with - - "new" message ?
Sep 6, 2017
part of my service dose this :
how is this keep loging ? is there a way to disable this - my logs are humongous because of this :)
The text was updated successfully, but these errors were encountered: