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 69b9162 commit 95c0531Copy full SHA for 95c0531
server/plugin/plugin.go
@@ -1112,7 +1112,9 @@ func (p *Plugin) sendRefreshEvent(userID string) {
1112
1113
info, apiErr := p.getGitHubUserInfo(context.UserID)
1114
if apiErr != nil {
1115
- p.client.Log.Warn("Failed to get github user info", "error", apiErr.Error())
+ if apiErr.ID != apiErrorIDNotConnected {
1116
+ p.client.Log.Debug("Failed to get github user info", "error", apiErr.Error())
1117
+ }
1118
return
1119
}
1120
0 commit comments