Skip to content

Commit

Permalink
another logging bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bborn committed Apr 28, 2011
1 parent 162881d commit 529ed6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pismo/images/image_extractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def checkForLargeImages(node, parentDepth, siblingDepth)
# // we start at the top node then recursively go up to siblings/parent/grandparent to find something good
prevSibling = node.previous_sibling
if (prevSibling)
@logger.debug("About to do a check against the sibling element, tagname: '" + node.name.to_s + "' class: '" + prevSibling["class"] + "' id: '" + prevSibling["id"] + "'")
@logger.debug("About to do a check against the sibling element" + prevSibling["class"] + "' id: '" + prevSibling["id"] + "'")
siblingDepth = siblingDepth + 1
checkForLargeImages(prevSibling, parentDepth, siblingDepth)
else
Expand Down

0 comments on commit 529ed6a

Please sign in to comment.