本文整理汇总了Python中opus_core.session_configuration.SessionConfiguration.print_debug方法的典型用法代码示例。如果您正苦于以下问题:Python SessionConfiguration.print_debug方法的具体用法?Python SessionConfiguration.print_debug怎么用?Python SessionConfiguration.print_debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类opus_core.session_configuration.SessionConfiguration
的用法示例。
在下文中一共展示了SessionConfiguration.print_debug方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from opus_core.session_configuration import SessionConfiguration [as 别名]
# 或者: from opus_core.session_configuration.SessionConfiguration import print_debug [as 别名]
def __init__(self,
resources=None,
in_storage=None,
out_storage=None,
in_table_name=None,
out_table_name=None,
attributes=None,
id_name=None,
nchunks=None,
debuglevel=0
):
try:
debug = SessionConfiguration().get('debuglevel', 0)
except:
debug = 0
debug = DebugPrinter(debug)
if debuglevel > debug.flag:
debug.flag = debuglevel
debug.print_debug("Creating object %s.%s" % (self.__class__.__module__, self.__class__.__name__), 2)
resources = ResourceFactory().get_resources_for_dataset(
self.dataset_name,
resources = resources,
in_storage = in_storage,
in_table_name_pair = (in_table_name,self.in_table_name_default),
attributes_pair = (attributes,self.attributes_default),
out_storage = out_storage,
out_table_name_pair = (out_table_name, self.out_table_name_default),
id_name_pair = (id_name, self.id_name_default),
nchunks_pair = (nchunks,self.nchunks_default),
debug_pair = (debug,None),
)
CoreDataset.__init__(self,resources = resources)