Emits warning for Firelogger 1.0
Since Firelogger 1.0 is on the way: http://getsatisfaction.com/binaryage/topics/is_there_planned_upgrade_to_make_firelogger_compatible_with_firefox_4
FireLogger (client) has version "1.0", but FirePython (server) is version "0.9". Check http://firelogger.binaryage.com for latest version.
I'm also having this issue. Is there an easy way to ignore these warnings without editing the version information for the client or server?
import firepython firepython.api_version = '1.1'
From https://github.com/darwin/firepython/blob/master/firepython/middleware.py#L63:
if firepython.__api_version__ != firelogger_api_version:
So try this (change to match your client version):
import firepython
firepython.__api_version__ = '1.2'