-
Notifications
You must be signed in to change notification settings - Fork 16
Description
I'm getting a FireLogger not detected message while running FireLogger on Mac with the Google App Engine Webapp framework. FireLogger is not receiving any messages from the application. Please see details below:
== System configuration == :
Mac OSX 10.6.6
Firefox 3.6.13
Firebug 1.6.1
Firelogger 0.9
FirePython api version 0.9
== Code: ==
import config
import cgi
import os
import sys
from firepython.middleware import FirePythonWSGI
import logging
....
from google.appengine.ext.webapp import template
from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext import db
...
def main():
application = webapp.WSGIApplication(
[('/', MainPage),
('/sign', Guestbook)],
debug=True)
application = FirePythonWSGI(application)
run_wsgi_app(application)
if name == "main":
main()
== Command Line Output == :
pigsy:dev alex$ dev_appserver.py --port=8080 helloworld/
INFO 2011-01-18 22:29:58,860 appengine_rpc.py:153] Server: appengine.google.com
INFO 2011-01-18 22:29:58,866 appcfg.py:414] Checking for updates to the SDK.
INFO 2011-01-18 22:30:01,452 appcfg.py:428] The SDK is up to date.
WARNING 2011-01-18 22:30:01,452 datastore_file_stub.py:573] Could not read datastore data from /var/folders/Uk/Uk4+q6Q4EpOZ0xEE4TqWFk+++TM/-Tmp-/dev_appserver.datastore
INFO 2011-01-18 22:30:01,579 dev_appserver_main.py:485] Running application helloworld on port 8080: http://localhost:8080
INFO 2011-01-18 22:30:04,731 config.py:9] Starting application in DEBUG mode: True
WARNING 2011-01-18 22:30:04,812 py_zipimport.py:103] Can't open zipfile /opt/local/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/setuptools-0.6c11-py2.5.egg-info: IOError: [Errno 13] file not accessible: '/opt/local/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/setuptools-0.6c11-py2.5.egg-info'
INFO 2011-01-18 22:30:05,024 middleware.py:61] FireLogger not detected
INFO 2011-01-18 22:30:05,039 dev_appserver.py:3317] "GET / HTTP/1.1" 200 -
INFO 2011-01-18 22:30:05,044 dev_appserver_index.py:212] Updating /Users/alex/Documents/dev/helloworld/index.yaml
INFO 2011-01-18 22:30:05,108 dev_appserver.py:3317] "GET /stylesheets/main.css HTTP/1.1" 200 -