In Python 2.4 and later, configuring the logging module to have a more basic formatting is easy:
logging.basicConfig(level=opts.LOGLEVEL, format="%(message)s")
but for applications which need to support Python 2.3 it seems more difficult, because the logging API was overhauled in Py2.4. In particular, basicConfig doesn't take any arguments. Trying a variation on the sole example in the Py2.3 documentation, I get this:
try:
logging.basicConfig(level=opts.LOGLEVEL, format="%(message)s")
except:
logging.getLogger().setLevel(opts.LOGLEVEL)
h = logging.StreamHandler()
h.setFormatter(logging.Formatter("%(message)s"))
logging.getLogger().addHandler(h)
but calling this root logger in Py2.3, e.g.
logging.info("Foo")
gives duplicated output:
Foo
INFO:root:Foo
I can't find a way to modify the format of the existing handler on the root logger in Py2.3 (the "except" block above), hence the "addHandler" call that's producing the duplicated output. Is there a way to set the format of the root logger without this duplication? Thanks!

logging.getLogger().handlers? It looks like you've got 2 handlers there. – Denis Otkidach Oct 30 at 10:22handlersmember in the documentation (including via thehelp()function). With this I'm able to choose whether to modify the existing handler or add a new one: cheers! – andybuckley Oct 31 at 20:41