当前位置: 首页>>代码示例>>Python>>正文


Python Report.registerLog方法代码示例

本文整理汇总了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
开发者ID:aleabot,项目名称:aleabot,代码行数:33,代码来源:aleabot.py


注:本文中的kol.util.Report.registerLog方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。