No log_packace with the new library

Post here to get support
Post Reply
marco.tognon
Member
Posts: 38
Joined: Mon Sep 16, 2013 10:22 am

No log_packace with the new library

Post by marco.tognon »

Hallo!

I wrote my own ROS interface for the crazyflie using the python library. It worked!!! Now I changed the hold library with the new one but i don't receive the log_package.
(To write my code i used the examples in the wiki). I would to understand if is changed something or where is the problem!!

Cheers
marcus
Bitcraze
Posts: 659
Joined: Mon Jan 28, 2013 7:02 pm
Location: Sweden
Contact:

Re: No log_packace with the new library

Post by marcus »

Hi,

This could be due to some renaming in the API, it depends a bit on what you mean by old and new version. Could you copy/paste the output from the application in the console?
marco.tognon
Member
Posts: 38
Joined: Mon Sep 16, 2013 10:22 am

Re: No log_packace with the new library

Post by marco.tognon »

Marcus do you mean the output of my application?

With new I mean the last version, with old I mean the version before the hover mode.
marcus
Bitcraze
Posts: 659
Joined: Mon Jan 28, 2013 7:02 pm
Location: Sweden
Contact:

Re: No log_packace with the new library

Post by marcus »

Yes, if you configure the logger it should print out debug info from the library in the console. Use this code in your application to configure it.

Code: Select all

import logging
logging.basicConfig(level=logging.DEBUG)
Post Reply