本文整理汇总了Python中openquake.logs.LOG.warning方法的典型用法代码示例。如果您正苦于以下问题:Python LOG.warning方法的具体用法?Python LOG.warning怎么用?Python LOG.warning使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类openquake.logs.LOG
的用法示例。
在下文中一共展示了LOG.warning方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: default_configs
# 需要导入模块: from openquake.logs import LOG [as 别名]
# 或者: from openquake.logs.LOG import warning [as 别名]
def default_configs(cls):
"""
Default job configuration files, writes a warning if they don't exist.
"""
if not FLAGS.include_defaults:
return []
if not any([os.path.exists(cfg) for cfg in cls.__defaults]):
LOG.warning("No default configuration! If your job config doesn't "
"define all of the expected properties things might "
"break.")
return cls.__defaults