diff --git a/src/services/uidScoreStore.ts b/src/services/uidScoreStore.ts index e65ecf5..2626a66 100644 --- a/src/services/uidScoreStore.ts +++ b/src/services/uidScoreStore.ts @@ -2,9 +2,11 @@ import { xcxApi } from '../utils/server'; export const getUidScore = async (uids: string[], force?: boolean): Promise> => { const entries: [string, string][] = []; + console.debug('getUidScore(%s): start', uids.length); for (const uid of uids) { const profile = await xcxApi.getAdvProfile(uid, force); entries.push([uid, profile?.score ?? '']); } + console.debug('getUidScore(%s): end', uids.length); return Object.fromEntries(entries); } \ No newline at end of file