Login

logging to shell on dev server

Author:
chachan
Posted:
July 15, 2012
Language:
Python
Version:
Not specified
Score:
1 (after 1 ratings)

You can customize the format. Also you can display variable values that support str or another object-to-string method.

1
2
3
4
5
6
7
8
9
from django.shortcuts import render
import logging

logging_format = '%(asctime)s - %(levelname)s - %(filename)s:%(lineno)d - %(message)s'
logging.basicConfig(level=logging.DEBUG, format=logging_format)

def some_view(request):
    logging.debug('This is a debugging message')
    return render(request, 'some_template.html', {})

More like this

  1. Form field with fixed value by roam 3 days, 19 hours ago
  2. New Snippet! by Antoliny0919 1 week, 3 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 4 weeks ago
  4. get_object_or_none by azwdevops 6 months, 3 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago

Comments

Please login first before commenting.