Fix typo in log message

This commit is contained in:
Frédéric Guillot 2024-01-22 20:15:38 -08:00
parent d68f2306c6
commit 50341759b6
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ func (s *Storage) RemoveUser(userID int64) error {
func (s *Storage) RemoveUserAsync(userID int64) {
go func() {
if err := s.deleteUserFeeds(userID); err != nil {
slog.Error("Unable to delete user feedd",
slog.Error("Unable to delete user feeds",
slog.Int64("user_id", userID),
slog.Any("error", err),
)