17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
let DEBUG = false;
|
|
|
|
export function log(...args) {
|
|
if (DEBUG) {
|
|
console.log(...args);
|
|
}
|
|
}
|
|
|
|
export function enableDebug(active) {
|
|
DEBUG = !!active;
|
|
log("PawSQLite: debugging " + (DEBUG ? "enabled" : "disabled"));
|
|
|
|
if (DEBUG) {
|
|
log("You might also want to enable debugging for the adapter that you " +
|
|
"are using");
|
|
}
|
|
} |