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


Python log.log方法代码示例

本文整理汇总了Python中distutils.log.log方法的典型用法代码示例。如果您正苦于以下问题:Python log.log方法的具体用法?Python log.log怎么用?Python log.log使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在distutils.log的用法示例。


在下文中一共展示了log.log方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: run_command

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def run_command(self, command):
        """Do whatever it takes to run a command (including nothing at all,
        if the command has already been run).  Specifically: if we have
        already created and run the command named by 'command', return
        silently without doing anything.  If the command named by 'command'
        doesn't even have a command object yet, create one.  Then invoke
        'run()' on that command object (or an existing one).
        """
        # Already been here, done that? then return silently.
        if self.have_run.get(command):
            return

        log.info("running %s", command)
        cmd_obj = self.get_command_obj(command)
        cmd_obj.ensure_finalized()
        cmd_obj.run()
        self.have_run[command] = 1

    # -- Distribution query methods ------------------------------------ 
开发者ID:CedricGuillemet,项目名称:Imogen,代码行数:21,代码来源:dist.py

示例2: dump_options

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def dump_options(self, header=None, indent=""):
        from distutils.fancy_getopt import longopt_xlate
        if header is None:
            header = "command options for '%s':" % self.get_command_name()
        self.announce(indent + header, level=log.INFO)
        indent = indent + "  "
        for (option, _, _) in self.user_options:
            option = option.translate(longopt_xlate)
            if option[-1] == "=":
                option = option[:-1]
            value = getattr(self, option)
            self.announce(indent + "%s = %s" % (option, value),
                          level=log.INFO) 
开发者ID:glmcdona,项目名称:meddle,代码行数:15,代码来源:cmd.py

示例3: announce

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def announce(self, msg, level=1):
        """If the current verbosity level is of greater than or equal to
        'level' print 'msg' to stdout.
        """
        log.log(level, msg) 
开发者ID:glmcdona,项目名称:meddle,代码行数:7,代码来源:cmd.py

示例4: warn

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def warn(self, msg):
        log.warn("warning: %s: %s\n" %
                (self.get_command_name(), msg)) 
开发者ID:glmcdona,项目名称:meddle,代码行数:5,代码来源:cmd.py

示例5: make_file

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def make_file(self, infiles, outfile, func, args,
                  exec_msg=None, skip_msg=None, level=1):
        """Special case of 'execute()' for operations that process one or
        more input files and generate one output file.  Works just like
        'execute()', except the operation is skipped and a different
        message printed if 'outfile' already exists and is newer than all
        files listed in 'infiles'.  If the command defined 'self.force',
        and it is true, then the command is unconditionally run -- does no
        timestamp checks.
        """
        if skip_msg is None:
            skip_msg = "skipping %s (inputs unchanged)" % outfile

        # Allow 'infiles' to be a single string
        if isinstance(infiles, str):
            infiles = (infiles,)
        elif not isinstance(infiles, (list, tuple)):
            raise TypeError, \
                  "'infiles' must be a string, or a list or tuple of strings"

        if exec_msg is None:
            exec_msg = "generating %s from %s" % \
                       (outfile, ', '.join(infiles))

        # If 'outfile' must be regenerated (either because it doesn't
        # exist, is out-of-date, or the 'force' flag is true) then
        # perform the action that presumably regenerates it
        if self.force or dep_util.newer_group(infiles, outfile):
            self.execute(func, args, exec_msg, level)

        # Otherwise, print the "skip" message
        else:
            log.debug(skip_msg)

# XXX 'install_misc' class not currently used -- it was the base class for
# both 'install_scripts' and 'install_data', but they outgrew it.  It might
# still be useful for 'install_headers', though, so I'm keeping it around
# for the time being. 
开发者ID:glmcdona,项目名称:meddle,代码行数:40,代码来源:cmd.py

示例6: announce

# 需要导入模块: from distutils import log [as 别名]
# 或者: from distutils.log import log [as 别名]
def announce(self, msg, level=log.INFO):
        log.log(level, msg) 
开发者ID:glmcdona,项目名称:meddle,代码行数:4,代码来源:dist.py


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