From d1ce83a9c891f9828db652e96b699ea1887f4af7 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Sun, 9 Mar 2025 18:38:42 -0300 Subject: [PATCH] fix: Don't log when falling back to ruby, it breaks stuff --- src/lexer.cr | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lexer.cr b/src/lexer.cr index 0fd92ae..65525f3 100644 --- a/src/lexer.cr +++ b/src/lexer.cr @@ -354,7 +354,6 @@ module Tartrazine super rescue ex : Crystal::SyntaxException # Fallback to Ruby highlighting - Log.warn { "Highlighting as Ruby, Crystal syntax highlighting failed: #{ex.message}" } @tokens = Tartrazine.lexer("ruby").tokenizer(text).to_a end