mirror of
https://github.com/MercuryWorkshop/bare-mux.git
synced 2025-05-16 15:40:01 -04:00
Change console.warns for bcc version and found implementation to console.debug
This commit is contained in:
parent
69a840b93e
commit
76e7d64dac
1 changed files with 2 additions and 2 deletions
|
@ -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"];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue