UNPKG

@fizzyflow/suisql

Version:

SuiSQL is a library and set of tools for working with decentralized SQL databases on the Sui blockchain and Walrus protocol.

20 lines (14 loc) 294 B
export default class SuiSqlLog { static _debug = false; static switch(onOff: boolean) { SuiSqlLog._debug = onOff; } static log(...args: any[]) { if (!SuiSqlLog._debug) { return; } let prefix = 'SuiSql | '; args.unshift(prefix); console.info.apply(null, args); } };