Browse Source

Added suggestion to also enable debugging for any adapters in use

master
Ben Ashton 3 years ago
parent
commit
2d4302b6a5
  1. 5
      src/log.mjs

5
src/log.mjs

@ -9,4 +9,9 @@ export function 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");
}
}
Loading…
Cancel
Save