(ctx context.Context, msg string, attrs ...slog.Attr)
| 297 | } |
| 298 | |
| 299 | func (c *RepoAccessCache) logDebug(ctx context.Context, msg string, attrs ...slog.Attr) { |
| 300 | c.log(ctx, slog.LevelDebug, msg, attrs...) |
| 301 | } |
| 302 | |
| 303 | func (c *RepoAccessCache) isTrustedBot(username string) bool { |
| 304 | _, ok := c.trustedBotLogins[strings.ToLower(username)] |
no test coverage detected