From ecca0182f8199438119c5401e3f54ce786964456 Mon Sep 17 00:00:00 2001 From: kyuuseiryuu Date: Thu, 26 Mar 2026 17:54:49 +0900 Subject: [PATCH] chore(uiScoreStore): logger --- src/services/uidScoreStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/uidScoreStore.ts b/src/services/uidScoreStore.ts index 49cf6a7..a64dfa2 100644 --- a/src/services/uidScoreStore.ts +++ b/src/services/uidScoreStore.ts @@ -3,7 +3,7 @@ import { xcxApi } from '../utils/server'; export const getUidScore = async (uids: string[], force?: boolean): Promise> => { const entries: [string, string][] = []; - logger.debug('getUidScore(%s): start', uids.length); + logger.debug('GetUidScore', { uids, force }); for (const uid of uids) { const profile = await xcxApi.getAdvProfile(uid, force); entries.push([uid, profile?.score ?? '']);