Skip to content

Commit 2fbaa4a

Browse files
author
mwasilew
committed
fix: [image-properties-tag-replacer] change log level in parse_image_link_url method
1 parent 6e97b68 commit 2fbaa4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

image_formatter/image_properties_tag_replacer/image_properties_tag_replacer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def parse_image_link_url(self, tag_token: Token) -> Token:
5656
self.next_token()
5757
return Token(TokenType.T_IMAGE_URL_WITH_PROPERTIES, url_token.position, formatted_url)
5858
else:
59-
log.error(f"{ImagePropertiesTagReplacer.name()}: Failed to parse image link url.")
59+
log.info(f"{ImagePropertiesTagReplacer.name()}: Failed to parse image link url.")
6060
self.error_handler.handle(UnexpectedTagException(TokenType.T_IMAGE_URL, self.curr_token.type))
6161
return tag_token
6262

0 commit comments

Comments
 (0)