From 57b33fec7b33e5d1fbc4ae87f09864bff690c224 Mon Sep 17 00:00:00 2001 From: "ext.sopra.yvallet@grandlyon.com" <ext.sopra.yvallet@grandlyon.com> Date: Mon, 19 Oct 2020 17:44:51 +0200 Subject: [PATCH] add debug log for token --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 8eb35da..7da6558 100644 --- a/main.go +++ b/main.go @@ -497,6 +497,7 @@ func main() { // Check if AccessToken exist // Decode the token and retrieve the pce from it if len(data.AccessToken) > 0 { + log.Debug("Access Token : ", ata.AccessToken) s := strings.Split(data.AccessToken, ".") if len(s[1]) > 0 { log.Debug("Split Access Token : ", s[1]) -- GitLab