firelogger.py icon indicating copy to clipboard operation
firelogger.py copied to clipboard

Emits warning for Firelogger 1.0

Open coagulant opened this issue 14 years ago • 3 comments

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.

coagulant avatar May 05 '11 07:05 coagulant

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?

rhofour avatar May 31 '11 19:05 rhofour

import firepython firepython.api_version = '1.1'

dchaplinsky avatar Sep 24 '11 13:09 dchaplinsky

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'

ryansully avatar Feb 01 '12 02:02 ryansully