wxLog and python logging module

What's the best way to handle logging with wxpython? I think I'd like to use Python's standard logging module, but wouldn't I then be missing out on wx's logging? Is there a way to pass off wx's logging to Python's such that LogError goes to logging.error, LogWarning to logging.warning, etc?

Randall