"Chrome Logger is a Google Chrome extension for debugging server side applications in the Chrome console.
Most languages include their own logging capabilities, but sometimes it is easier to see your logs right in the browser."
--
"Using Chrome Logger is simple:
1. Install the Chrome Logger extension for Google Chrome.
2. Click the extension icon to enable logging for the current tab's domain (It will light up blue).
toggle icon
3. Install a server side library for your language.
4. Add some log statements
# django example
import chromelogger as console
from django.http import HttpResponse
def index(request):
response = HttpResponse("Hello, world. You're at the poll index.")
console.log('Hello console!')
console.log(request.user)
return response
5. Check the console!
https://craig.global.ssl.fastly.net/img/chromelogger/console.gif
#dev #logging #web_development #pub
Collect and share the web
Get started for free