From 5c8f8fc3fd3bb533c97b6f704344c5c29876568c Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Thu, 17 Aug 2023 16:44:59 +0200 Subject: [PATCH] pg: dlc: log url of dlc if account not linked, #180 --- prime-gaming.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prime-gaming.js b/prime-gaming.js index 90b1a15..d1b69eb 100644 --- a/prime-gaming.js +++ b/prime-gaming.js @@ -332,7 +332,7 @@ try { if (await linkAccountButton.count()) { console.error(' Missing account linking:', await linkAccountButton.getAttribute('aria-label'), url); } else if(await page.locator('text=Link game account').count()) { // epic-games only? - console.error(' Missing account linking:', await page.locator('button[data-a-target="gms-cta"]').innerText()); + console.error(' Missing account linking:', await page.locator('button[data-a-target="gms-cta"]').innerText(), url); } else { const code = await page.inputValue('input[type="text"]'); console.log(' Code to redeem game:', code);