Change console.warns for bcc version and found implementation to console.debug

This commit is contained in:
wearrrrr 2024-03-16 22:58:01 -05:00
parent 69a840b93e
commit 76e7d64dac

View file

@ -2,7 +2,7 @@ import { BareTransport } from "./BareTypes";
import RemoteTransport from "./RemoteClient";
self.BCC_VERSION = "3.0.4";
console.warn("BCC_VERSION: " + self.BCC_VERSION);
console.debug("BCC_VERSION: " + self.BCC_VERSION);
declare global {
interface ServiceWorkerGlobalScope {
@ -65,7 +65,7 @@ export function findSwitcher(): Switcher {
_parent = _parent.parent;
if (_parent && _parent["gSwitcher"]) {
console.warn("found implementation on parent");
console.debug("Found implementation on parent");
globalThis.gSwitcher = _parent["gSwitcher"];
return _parent["gSwitcher"];
}