We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5681091 commit 497a640Copy full SHA for 497a640
main.go
@@ -285,9 +285,7 @@ func loop() {
285
if len(*signatureKey) == 0 {
286
log.Panicf("signature public key cannot be empty")
287
}
288
- fmt.Println("Signature key:", *signatureKey)
289
-
290
- // when a public key is read fro the .ini file, the '\n' are escape with an additional '\', we need to replace them with '\n'
+ // when a public key is read from the .ini file, the '\n' are escape with an additional '\', we need to replace them with '\n'
291
signaturePubKey, err := utilities.ParseRsaPublicKey(strings.ReplaceAll(*signatureKey, "\\n", "\n"))
292
if err != nil {
293
log.Panicf("cannot parse signature key '%s'. %s", *signatureKey, err)
0 commit comments