Skip to content

Commit

Permalink
update debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettCleary committed Dec 19, 2024
1 parent 59abcce commit 6f115f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backend/storeManagers/hyperplay/games.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,9 @@ async function createSiweMessage(signerAddress: string): Promise<SiweMessage> {
}
const url = new URL(mainWindowUrl)
const domain = url.host ? url.host : 'hyperplay'
logInfo(`url origin ${url.origin} host ${url.host}`)
logInfo(
`url origin ${url.origin} host ${url.host} mainWindowUrl ${mainWindowUrl}`
)
const origin = url.origin.startsWith('file://')
? 'file://hyperplay'
: url.origin
Expand Down

0 comments on commit 6f115f7

Please sign in to comment.