diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2014-11-05 13:30:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-12 17:04:48 +0000 |
commit | 990fb9ed6cc8414e9a0b1baed8990261650af1db (patch) | |
tree | 1ed10c5bc93660fe6727ae014a85997c44f811db /bitbake/lib/toaster | |
parent | 3e9fc8d0916f1d51dd6b748fff966d8aafd7f438 (diff) | |
download | poky-990fb9ed6cc8414e9a0b1baed8990261650af1db.tar.gz |
bitbake: toaster: SQL query logging
We add a logger, enabled through the settings.py, that
logs all SQL queries, with timestamp and duration, to console.
This is helpful in profiling the SQL queries.
The facility is disabled by default.
(Bitbake rev: 54fd0a76fa3154adfab5688ecc96963f42cded11)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index 42581f2df4..8de3b52f34 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -24,6 +24,10 @@ | |||
24 | DEBUG = True | 24 | DEBUG = True |
25 | TEMPLATE_DEBUG = DEBUG | 25 | TEMPLATE_DEBUG = DEBUG |
26 | 26 | ||
27 | # Set to True to see the SQL queries in console | ||
28 | SQL_DEBUG = False | ||
29 | |||
30 | |||
27 | ADMINS = ( | 31 | ADMINS = ( |
28 | # ('Your Name', 'your_email@example.com'), | 32 | # ('Your Name', 'your_email@example.com'), |
29 | ) | 33 | ) |
@@ -276,11 +280,21 @@ LOGGING = { | |||
276 | '()': 'django.utils.log.RequireDebugFalse' | 280 | '()': 'django.utils.log.RequireDebugFalse' |
277 | } | 281 | } |
278 | }, | 282 | }, |
283 | 'formatters': { | ||
284 | 'datetime': { | ||
285 | 'format': 'DB %(asctime)s %(message)s' | ||
286 | } | ||
287 | }, | ||
279 | 'handlers': { | 288 | 'handlers': { |
280 | 'mail_admins': { | 289 | 'mail_admins': { |
281 | 'level': 'ERROR', | 290 | 'level': 'ERROR', |
282 | 'filters': ['require_debug_false'], | 291 | 'filters': ['require_debug_false'], |
283 | 'class': 'django.utils.log.AdminEmailHandler' | 292 | 'class': 'django.utils.log.AdminEmailHandler' |
293 | }, | ||
294 | 'console': { | ||
295 | 'level': 'DEBUG', | ||
296 | 'class': 'logging.StreamHandler', | ||
297 | 'formatter': 'datetime', | ||
284 | } | 298 | } |
285 | }, | 299 | }, |
286 | 'loggers': { | 300 | 'loggers': { |
@@ -292,6 +306,13 @@ LOGGING = { | |||
292 | } | 306 | } |
293 | } | 307 | } |
294 | 308 | ||
309 | if DEBUG and SQL_DEBUG: | ||
310 | LOGGING['loggers']['django.db.backends'] = { | ||
311 | 'level': 'DEBUG', | ||
312 | 'handlers': ['console'], | ||
313 | } | ||
314 | |||
315 | |||
295 | # If we're using sqlite, we need to tweak the performance a bit | 316 | # If we're using sqlite, we need to tweak the performance a bit |
296 | from django.db.backends.signals import connection_created | 317 | from django.db.backends.signals import connection_created |
297 | def activate_synchronous_off(sender, connection, **kwargs): | 318 | def activate_synchronous_off(sender, connection, **kwargs): |