Skip to content

Commit

Permalink
quiet logging
Browse files Browse the repository at this point in the history
  • Loading branch information
june07 committed Apr 5, 2024
1 parent f0eafa0 commit 5d56b56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,9 @@ async function checkLicenseStatus() {
}
}
} else {
console.log(`checking license again in ${Math.floor(1000 * 60 * 60 * 2 - (Date.now() - cache.checkedLicenseOn)) / 1000 / 60} min`)
if (settings.debugVerbosity >= 9) {
console.log(`checking license again in ${Math.floor(1000 * 60 * 60 * 2 - (Date.now() - cache.checkedLicenseOn)) / 1000 / 60} min`)
}
}
}
function getRemoteWebSocketDebuggerUrl(remoteMetadata, info, options = { encode: true }) {
Expand Down

0 comments on commit 5d56b56

Please sign in to comment.