bns-v2-sdk
Version:
The official BNS V2 SDK for interacting with Stacks Blockchain
21 lines (19 loc) • 383 B
text/typescript
let isDebugEnabled = false;
export const debug = {
enable: () => {
isDebugEnabled = true;
},
disable: () => {
isDebugEnabled = false;
},
log: (...args: any[]) => {
if (isDebugEnabled) {
console.log("[BNS-V2-SDK]:", ...args);
}
},
error: (...args: any[]) => {
if (isDebugEnabled) {
console.error("[BNS-V2-SDK]:", ...args);
}
},
};