From 811dad51d50e1db91f691201ac288f1ac294acbb Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Sat, 25 Jan 2025 11:56:12 +0000
Subject: [PATCH] Remove debugging log statement

---
 pwhash/argon2.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/pwhash/argon2.go b/pwhash/argon2.go
index fef03ca..87df12f 100644
--- a/pwhash/argon2.go
+++ b/pwhash/argon2.go
@@ -6,7 +6,6 @@ import (
 	"encoding/hex"
 	"errors"
 	"fmt"
-	"log"
 	"strconv"
 	"strings"
 
@@ -216,6 +215,5 @@ func (*argon2StdCodec) decodeArgon2Hash(s string) (params argon2Params, salt []b
 	}
 	dk, err = base64.RawStdEncoding.DecodeString(parts[3])
 
-	log.Printf("params: %+v", params)
 	return
 }
-- 
GitLab