#!/usr/bin/python## Copyright (C) 2014 Ipsilon Project Contributors## See the file named COPYING for the project licenseimport cherrypy
classLog(object):defdebug(self, fact):if cherrypy.config.get('debug',False):
cherrypy.log(fact)# for compatibility with existing code
_debug = debug
deflog(self, fact):
cherrypy.log(fact)