From f4d625eab4cbe6f4e6806713cc8ee6eca7565910 Mon Sep 17 00:00:00 2001 From: David Vogel Date: Wed, 18 Dec 2024 12:04:31 +0100 Subject: [PATCH] Remove debug print --- errors.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/errors.go b/errors.go index 9d6b44d..fd29902 100644 --- a/errors.go +++ b/errors.go @@ -1,7 +1,6 @@ package typst import ( - "log" "regexp" "strconv" ) @@ -44,8 +43,6 @@ func NewError(stderr string, inner error) *Error { err.Column = int(column) } - log.Printf("%#v", err) - return &err }