From d2f65d786ac391794ce71e0f74fb18a60f90dd88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 11 Mar 2024 12:22:53 +0100 Subject: [PATCH] Remove risky debug information --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c0cc77c..161dc12 100644 --- a/main.go +++ b/main.go @@ -71,7 +71,7 @@ func main() { token := githubactions.GetInput("token") fmt.Printf("Api url is %v\n", ctx.ServerURL) - fmt.Printf("Debug: token begins with %v (4 first characters) and length is %d\n", token[0:4], len(token)) + fmt.Printf("Debug: token length is %d characters\n", len(token)) config, err := ParseActionConfig(*ctx) if err != nil {