1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

refactor(googlreader): remove redundant log message

This commit is contained in:
Frédéric Guillot 2025-05-02 17:49:11 -07:00
parent 63f0a17388
commit 9a8a8bdca3

View file

@ -173,14 +173,6 @@ func (m *middleware) apiKeyAuth(next http.Handler) http.Handler {
return
}
slog.Info("[GoogleReader] User authenticated successfully",
slog.Bool("authentication_successful", true),
slog.String("client_ip", clientIP),
slog.String("user_agent", r.UserAgent()),
slog.Int64("user_id", user.ID),
slog.String("username", user.Username),
)
m.store.SetLastLogin(integration.UserID)
ctx := r.Context()