From: Simo Sorce Date: Sat, 28 Jun 2014 00:17:00 +0000 (-0400) Subject: Add Log class that can be inherited from safely X-Git-Tag: v0.3.0~113 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=commitdiff_plain;h=734323ca25765e6eecfa63e41b7f3ec12b084ca3 Add Log class that can be inherited from safely Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- diff --git a/ipsilon/util/log.py b/ipsilon/util/log.py new file mode 100755 index 0000000..3000bb5 --- /dev/null +++ b/ipsilon/util/log.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +# +# Copyright (C) 2014 Ipsilon Project Contributors +# +# See the file named COPYING for the project license + +import cherrypy + + +class Log(object): + + def debug(self, fact): + if cherrypy.config.get('debug', False): + cherrypy.log(fact) + + # for compatibility with existing code + _debug = debug + + def log(self, fact): + cherrypy.log(fact)