diff options
Diffstat (limited to 'src/db/DatabaseTable.vala')
-rw-r--r-- | src/db/DatabaseTable.vala | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/db/DatabaseTable.vala b/src/db/DatabaseTable.vala index 09c026f..4fc8853 100644 --- a/src/db/DatabaseTable.vala +++ b/src/db/DatabaseTable.vala @@ -49,9 +49,13 @@ public abstract class DatabaseTable { e.message)); } } -#if SQLITE_DEBUG - db.trace (on_trace); -#endif + + unowned string? sql_debug = Environment.get_variable + ("SHOTWELL_SQL_DEBUG"); + + if (sql_debug != "") { + db.trace (on_trace); + } } public static void on_trace (string message) { |