Clark,
I'm not sure on all that Anaconda stuff, but the read_bdf and read_op2 functions have a log parameter. If you're using the class-based approach, the log is in the init for the class and the read_bdf/read_op2 methods (a method is a function in a class), do not have the log argument.
There are two basic ways to do logging
- The debug argument can be True/False/None (True=debug, False=info, None=warning)
- The log argument takes priority
The log argument can be:
- None in which case, it creates a print/SimpleLogger
- user defined SimpleLogger/FileLogger (from cpylog)
- user defined stock Python logger
The cpylog FileLogger writes a file :) and optionally writes the logging to the screen.
Steve