-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementation of logging as 'print' statements #419
Comments
Short answer - It just never got past the quick and easy print statement :P We only ever used logging to print out some information in demos / tests. Wherever there was an integration, custom behaviours and visitors made use of the logging framework the trees were running in. I wouldn't be averse to having it use the standard python logger, even by default. What's your use case? |
My use case is building a Python-only program (no ROS, no C++ binding) where the state is controlled by a BT instead of an FSM, and wishing to simulate recorded runs for debugging/analysis purposes. |
Ok, so there's probably three use cases in mind here. In order of complexity:
^TLDR; Unpacking 2 would be a great feature to have. |
Hi @stonier ,
Why are all the logs in your Logger class handled with print and not by the logging module?
I see you comment at the beggining of logging.py, but still - what would you think about having the option to switch to a logging.Logger by some boolean flag?
The text was updated successfully, but these errors were encountered: