예제 #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
파일: mixins.py 프로젝트: AlfredWei/weblate
 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
파일: mixins.py 프로젝트: zypA13510/weblate
 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
     )