Remove extra colon in extract_item log

Co-authored-by: Samantaz Fox <coding@samantaz.fr>
This commit is contained in:
syeopite 2021-10-07 11:52:51 +00:00 committed by GitHub
parent 33f5d161f8
commit c2315be4b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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