Flurry - new plugin fails to log events - params count exceeded

I recently updated to the latest flurry plugin, and ever since most of the events I log are not reported. 

I get a callback to the flurry listener with:

event.phase = “failed”

event.data.errorCode = 2

event.data.reason = “params count exceeded”

event.response = See event.data for error details

event.data: table: 0x19ac9400

The actual logs I send haven’t changed, and it used to work in the old plugin.

It looks like the amount of parameters is limited in the new plugin, while in the old one it wasn’t. 

Why?

What is the limit?

Thanks

Can you print the data table? In fact you can use this simple trick:

print( json.prettify( event ) )

of course you have to require the json module first. That will dump the entire data structure. It sounds like there is more information in event.data that we are not seeing.

Rob