From c2315be4b6530c701f6bbdb068d876ab9ab00b2d Mon Sep 17 00:00:00 2001 From: syeopite <70992037+syeopite@users.noreply.github.com> Date: Thu, 7 Oct 2021 11:52:51 +0000 Subject: [PATCH] Remove extra colon in extract_item log Co-authored-by: Samantaz Fox --- src/invidious/helpers/extractors.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invidious/helpers/extractors.cr b/src/invidious/helpers/extractors.cr index cf76e4e9..c8a6cd4a 100644 --- a/src/invidious/helpers/extractors.cr +++ b/src/invidious/helpers/extractors.cr @@ -582,7 +582,7 @@ def extract_item(item : JSON::Any, author_fallback : String? = "", return result else - LOGGER.trace("extract_item: Parser: \"#{parser.parser_name}\" does not apply. Cycling to the next one...") + LOGGER.trace("extract_item: Parser \"#{parser.parser_name}\" does not apply. Cycling to the next one...") end end end @@ -615,7 +615,7 @@ def extract_items(initial_data : Hash(String, JSON::Any), author_fallback : Stri break else - LOGGER.trace("extract_items: Extractor: \"#{extractor.extractor_name}\" does not apply. Cycling to the next one...") + LOGGER.trace("extract_items: Extractor \"#{extractor.extractor_name}\" does not apply. Cycling to the next one...") end end