-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Labels
Milestone
Description
From https://docs.python.org/3/library/sqlite3.html#sqlite3.enable_callback_tracebacks
sqlite3.``enable_callback_tracebacks(flag)¶By default you will not get any tracebacks in user-defined functions, aggregates, converters, authorizer callbacks etc. If you want to debug them, you can call this function with flag set to
True. Afterwards, you will get tracebacks from callbacks onsys.stderr. UseFalseto disable the feature again.
Maybe turn this on for all of Datasette? Are there any disadvantages to doing that?
Reactions are currently unavailable