示例#1
0
文件: mixins.py 项目: rheehot/weblate
 def log_warning(self, msg, *args):
     self.log_hook("WARNING", msg, *args)
     return LOGGER.warning(": ".join((self.full_slug, msg)), *args)
示例#2
0
文件: mixins.py 项目: quinox/weblate
 def log_warning(self, msg, *args):
     return LOGGER.warning(self.log_prefix + msg, *args)
示例#3
0
 def log_warning(self, msg, *args):
     return LOGGER.warning(
         self.log_prefix + msg, *args
     )
示例#4
0
文件: mixins.py 项目: dekoza/weblate
 def log_warning(self, msg, *args):
     return LOGGER.warning(
         ': '.join((self.full_slug, msg)), *args
     )
示例#5
0
文件: mixins.py 项目: nijel/weblate
 def log_warning(self, msg, *args):
     return LOGGER.warning(": ".join((self.log_prefix, msg)), *args)
示例#6
0
文件: mixins.py 项目: tsoslow/weblate
 def log_warning(self, msg, *args):
     return LOGGER.warning(': '.join((self.full_slug, msg)), *args)
示例#7
0
 def log_warning(self, msg, *args):
     self.log_hook('WARNING', msg, *args)
     return LOGGER.warning(': '.join((self.full_slug, msg)), *args)
示例#8
0
文件: mixins.py 项目: crisp2u/weblate
 def log_warning(self, msg, *args):
     return LOGGER.warning(
         ': '.join((self.log_prefix, msg)), *args
     )
示例#9
0
文件: mixins.py 项目: nijel/weblate
 def log_warning(self, msg, *args):
     self.log_hook('WARNING', msg, *args)
     return LOGGER.warning(
         ': '.join((self.full_slug, msg)), *args
     )