From 812a34c0e9deabcb666a87de36f9c058d3d89567 Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Fri, 31 Mar 2023 15:00:06 -0700 Subject: [PATCH] remove noisy debug println --- lex/util/lex_types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/lex/util/lex_types.go b/lex/util/lex_types.go index 02eb147ec..3dc513f1a 100644 --- a/lex/util/lex_types.go +++ b/lex/util/lex_types.go @@ -46,7 +46,6 @@ func (ll LexLink) MarshalJSON() ([]byte, error) { } func (ll *LexLink) UnmarshalJSON(raw []byte) error { - fmt.Println("PARSING LEX LINK: ", raw) var jl jsonLink if err := json.Unmarshal(raw, &jl); err != nil { return xerrors.Errorf("parsing cid-link JSON: %v", err)