From 35057eac339605051215f4f6d918e463ee67f5c4 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Tue, 4 Aug 2020 00:00:18 -0300 Subject: [PATCH] chore: move log to debug Signed-off-by: Carlos Alexandro Becker --- internal/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/client/client.go b/internal/client/client.go index 01e409855..0e303acaf 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -41,7 +41,7 @@ type Client interface { // New creates a new client depending on the token type. func New(ctx *context.Context) (Client, error) { - log.WithField("type", ctx.TokenType).Info("token type") + log.WithField("type", ctx.TokenType).Debug("token type") if ctx.TokenType == context.TokenTypeGitHub { return NewGitHub(ctx, ctx.Token) }