fix: no log errors

This commit is contained in:
2025-12-27 01:18:52 -05:00
parent a05a63627e
commit 5841023dde
2 changed files with 0 additions and 25 deletions

View File

@@ -3,7 +3,6 @@ package saccharine
import (
"errors"
"fmt"
"log/slog"
"unicode"
"git.maximhutz.com/max/lambda/pkg/iterator"
@@ -79,10 +78,8 @@ func GetTokens(input []rune) (*iterator.Iterator[token.Token], error) {
for !i.Done() {
token, err := getToken(i)
if err != nil {
slog.Info("token error", "error", err)
errorList = append(errorList, err)
} else if token != nil {
slog.Info("token parsed", "token", token)
tokens = append(tokens, *token)
}
}