diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-04-10 11:29:55 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-04-10 11:29:55 -0400 |
commit | 6fd183a0e5ac47491ed7a8ffb2c36177575c9cc4 (patch) | |
tree | 7b8512ca3df149da221119e54fc60fe72fbebeca /HOW_TO_DEBUG | |
parent | 8822e0f2cf61d7f0564a67fcd0a1f435e8635603 (diff) | |
download | askbot-6fd183a0e5ac47491ed7a8ffb2c36177575c9cc4.tar.gz askbot-6fd183a0e5ac47491ed7a8ffb2c36177575c9cc4.tar.bz2 askbot-6fd183a0e5ac47491ed7a8ffb2c36177575c9cc4.zip |
fixed up INSTALL, settings_local.py.dist and replaced strings osqa->askbot everywhere, except main README file
Diffstat (limited to 'HOW_TO_DEBUG')
-rw-r--r-- | HOW_TO_DEBUG | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/HOW_TO_DEBUG b/HOW_TO_DEBUG index ba36198a..fbbdb1f7 100644 --- a/HOW_TO_DEBUG +++ b/HOW_TO_DEBUG @@ -18,17 +18,17 @@ logging.debug('') #this will add time, line number, function and file record #etc - take a look at http://docs.python.org/library/logging.html ------------------------------- -in OSQA logging is currently set up in settings_local.py.dist +in Askbot logging is currently set up in settings_local.py.dist please update it if you need - in older revs logging strings have less info messages of interest can be grepped out of the log file by module/file/function name e.g. to take out all django_authopenid logs run: ->grep 'osqa\/django_authopenid' log/django.osqa.log | sed 's/^.*MSG: //' +>grep 'askbot\/django_authopenid' log/django.askbot.log | sed 's/^.*MSG: //' in the example above 'sed' call truncates out a long prefix and makes output look more meaningful 2) DJANGO DEBUG TOOLBAR -osqa works with django debug toolbar +askbot works with django debug toolbar if debugging under apache server, check that debug toolbar media is loaded correctly if toolbar is enabled but you do not see it, possibly some Alias statement |