Remove debug statements

This commit is contained in:
Parker Moore 2013-07-22 11:33:19 +02:00
parent 26dc14881c
commit f883acc664
3 changed files with 0 additions and 3 deletions

View File

@ -78,7 +78,6 @@ module Jekyll
# #
# Returns the converted content # Returns the converted content
def render_liquid(content, payload, info) def render_liquid(content, payload, info)
Jekyll.logger.debug "Rendering Liquid for #{self.path}", ""
Liquid::Template.parse(content).render!(payload, info) Liquid::Template.parse(content).render!(payload, info)
rescue Exception => e rescue Exception => e
Jekyll.logger.error "Liquid Exception:", "#{e.message} in #{payload[:file]}" Jekyll.logger.error "Liquid Exception:", "#{e.message} in #{payload[:file]}"

View File

@ -59,7 +59,6 @@ module Jekyll
end end
def to_s def to_s
Jekyll.logger.debug "Excerpt#to_s:", "#{self.output} || #{content}"
self.output || self.content self.output || self.content
end end

View File

@ -256,7 +256,6 @@ module Jekyll
}.deep_merge(site_payload) }.deep_merge(site_payload)
self.extracted_excerpt.do_layout(payload, {}) self.extracted_excerpt.do_layout(payload, {})
Jekyll.logger.info("", "#{self.excerpt}".green)
do_layout(payload.merge({"page" => self.to_liquid}), layouts) do_layout(payload.merge({"page" => self.to_liquid}), layouts)
end end