Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jloh02 committed Jun 10, 2022
1 parent 06262d5 commit a6b1a1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/main/valorant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,9 @@ async function initPartyListeners() {
"GET",
`/parties/v1/players/${puuid}`
);
log.info("[VALORANT] Party Response: " + partyRes?.data);
log.info(
"[VALORANT] Party Response: " + JSON.stringify(partyRes?.data)
);
if (!partyRes || partyRes.status !== 200) return 0;
const resI = await query(
RequestType.GLZ,
Expand Down

0 comments on commit a6b1a1a

Please sign in to comment.