We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b717d7 commit 310bea6Copy full SHA for 310bea6
modules/backend-tokenApproximator.js
@@ -18,13 +18,13 @@
18
const Site = (window.InjectionTargetsOnWebsite && window.InjectionTargetsOnWebsite.activeSite) || 'Unknown';
19
20
// Logging helper required by project
21
+ // Log only through logConCgp - no fallback to console.*
22
function log(...args) {
23
try {
24
if (typeof window.logConCgp === 'function') {
25
window.logConCgp('[tok-approx]', ...args);
- } else {
26
- console.log('[tok-approx]', ...args);
27
}
+ // If logConCgp is not available, do nothing (project policy)
28
} catch { /* noop */ }
29
30
0 commit comments