Commit 4a737e16 authored by Luke Gehorsam's avatar Luke Gehorsam
Browse files

change error level for import steam friends error

parent 7390779b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -831,7 +831,7 @@ func importSteamFriends(ctx context.Context, logger *zap.Logger, db *sql.DB, mes

	steamProfiles, err := client.GetSteamFriends(ctx, publisherKey, steamId)
	if err != nil {
		logger.Info("Could not import Steam friends.", zap.Error(err))
		logger.Error("Could not import Steam friends.", zap.Error(err))
		return status.Error(codes.Unauthenticated, "Could not authenticate Steam profile.")
	}