Unified formats of log_xxx function
This patch is used to unified formats of log_xxx function.I have founded all log_xxx funtions of project files.Only this one is still not the same as others. I think change this formats may make codes more readable and uniform. OpenStack supports translating some log levels using separate message catalogs, when we add Variables to Log Messages, We do not do this: LOG.info(_LI('some message: variable=%s') % variable) actually, we use this style insteaded: LOG.info(_LI('some message: variable=%s'), variable) Change-Id: I3fd924516969853b2b9dced7659d33cdadd8d4ad
This commit is contained in:
parent
3c6f82dfaf
commit
31626a41c4
@ -429,7 +429,7 @@ class CreateCommand(TackerCommand, show.ShowOne):
|
||||
return parser
|
||||
|
||||
def get_data(self, parsed_args):
|
||||
self.log.debug('get_data(%s)' % parsed_args)
|
||||
self.log.debug('get_data(%s)', parsed_args)
|
||||
tacker_client = self.get_client()
|
||||
tacker_client.format = parsed_args.request_format
|
||||
_extra_values = parse_args_to_dict(self.values_specs)
|
||||
|
Loading…
x
Reference in New Issue
Block a user