本文整理汇总了Python中kol.util.Report.registerLog方法的典型用法代码示例。如果您正苦于以下问题:Python Report.registerLog方法的具体用法?Python Report.registerLog怎么用?Python Report.registerLog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kol.util.Report
的用法示例。
在下文中一共展示了Report.registerLog方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: basepath
# 需要导入模块: from kol.util import Report [as 别名]
# 或者: from kol.util.Report import registerLog [as 别名]
rng = alea.rng.RNG()
# Change to basepath (makes sure state files are saved in basepath)
os.chdir(basepath)
# Load the config file
config = alea.config.AleabotConfig(rng)
config.load(basepath)
# Set up console and file logging
Report.setOutputLevel(config.get("report_level"))
log_file = config.get("log_file")
if log_file != "":
log_file_full_path = os.path.join(basepath, log_file)
Report.registerLog(
os.path.dirname(log_file_full_path), os.path.basename(log_file_full_path), ["*"], config.get("log_level")
)
# Create and register our custom bot filter
alea.AleabotFilter.init(rng, config)
FilterManager.registerFilterForEvent(alea.AleabotFilter, "botProcessChat")
FilterManager.registerFilterForEvent(alea.AleabotFilter, "botProcessKmail")
FilterManager.registerFilterForEvent(alea.AleabotFilter, "botEndCycle")
FilterManager.registerFilterForEvent(alea.AleabotFilter, "botPreLogin")
# Start the bot manager
BotManager.init()
# Create and run the bot
params = {}
params["doWork:chat"] = True