From 003230ef627193ba5ddfe12e46c636f2695238a0 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sun, 20 Apr 2025 11:22:15 -0700 Subject: [PATCH] Removed stale import and log msg --- xsnet/chan.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/xsnet/chan.go b/xsnet/chan.go index 8618ccb..fecf581 100755 --- a/xsnet/chan.go +++ b/xsnet/chan.go @@ -22,7 +22,6 @@ import ( "blitter.com/go/cryptmt" "blitter.com/go/hopscotch" - "blitter.com/go/xs/logger" "github.com/aead/chacha20/chacha" whirlpool "github.com/jzelinskie/whirlpool" "golang.org/x/crypto/blowfish" @@ -66,7 +65,6 @@ func getNewStreamAlgs(cb uint8, hb uint8) (config uint32) { c := (cb % CAlgNoneDisallowed) h := (hb % HmacNoneDisallowed) config = uint32(h)<<8 | uint32(c) - //logger.LogDebug(fmt.Sprintf("[Chose new algs [%d:%d config:%d]", h, c, config)) return }