Skip to content
Snippets Groups Projects
Commit 6e4e79af authored by Bob Lantz's avatar Bob Lantz
Browse files

Add setLogLevel as an export.

parent 22f807fc
No related branches found
No related tags found
No related merge requests found
......@@ -170,6 +170,9 @@ def newfn( *args ):
setattr( newfn, '__doc__', fn.__doc__ )
return newfn
info, output, warn, error, debug = lg.info, lg.output, lg.warn, lg.error, \
lg.debug = [ makeListCompatible( f ) for f in lg.info, lg.output, lg.warn,
lg.error, lg.debug ]
info, output, warn, error, debug = (
lg.info, lg.output, lg.warn, lg.error, lg.debug ) = [
makeListCompatible( f ) for f in
lg.info, lg.output, lg.warn, lg.error, lg.debug ]
setLogLevel = lg.setLogLevel
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment