diff --git a/src/log.mjs b/src/log.mjs index 65db718..e95c053 100644 --- a/src/log.mjs +++ b/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"); + } } \ No newline at end of file