From 477d04541c80ca2140d2652bfd711d1dfee37948 Mon Sep 17 00:00:00 2001 From: Benedikt Willi Date: Mon, 15 Aug 2022 17:18:39 +0200 Subject: [PATCH] Update inlinepatterns.py --- mdx_oembed/inlinepatterns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdx_oembed/inlinepatterns.py b/mdx_oembed/inlinepatterns.py index 7bce944..ff40d15 100644 --- a/mdx_oembed/inlinepatterns.py +++ b/mdx_oembed/inlinepatterns.py @@ -19,7 +19,7 @@ class OEmbedLinkPattern(Pattern): def handleMatch(self, match): html = self.get_oembed_html_for_match(match) - LOG.info(html) + LOG.warn(html) if html is None: return None else: @@ -29,7 +29,7 @@ class OEmbedLinkPattern(Pattern): def get_oembed_html_for_match(self, match): url = match.group(3).strip() - LOG.info(url) + LOG.warn(url) try: response = self.consumer.embed(url) except oembed.OEmbedNoEndpoint: