Removed use of deprecated LOG.warn method

LOG.warn is deprecated. We were still used it some places.
So I replaced the LOG.warn method to LOG.warning, which is not
deprecated.

Change-Id: I9461cec569445ad6c40db9ce2feeeba1ef0af0e3
Closes-Bug: #1508442
This commit is contained in:
Gábor Antal
2016-01-15 16:49:32 +01:00
parent fd6ecc1b13
commit dfc9a3b37d
3 changed files with 5 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ class MessagingHandler(threading.Thread):
) )
self.__server = self.build_server(target) self.__server = self.build_server(target)
else: else:
LOG.warn( LOG.warning(
_LW("No endpoint defined; can only publish events")) _LW("No endpoint defined; can only publish events"))
except Exception as e: except Exception as e:
LOG.exception(e) LOG.exception(e)

View File

@@ -50,8 +50,9 @@ def safe_rstrip(value, chars=None):
""" """
if not isinstance(value, six.string_types): if not isinstance(value, six.string_types):
LOG.warn(_LW("Failed to remove trailing character. Returning original " LOG.warning(_LW(
"object. Supplied object is not a string: %s,"), value) "Failed to remove trailing character. Returning original object."
"Supplied object is not a string: %s,"), value)
return value return value
return value.rstrip(chars) or value return value.rstrip(chars) or value

View File

@@ -72,7 +72,7 @@ class Mapping(object):
# remove vm # remove vm
self.mapping_vm.pop(vm_uuid) self.mapping_vm.pop(vm_uuid)
else: else:
LOG.warn( LOG.warning(
"trying to delete the virtual machine {0} but it was not " "trying to delete the virtual machine {0} but it was not "
"found on hypervisor {1}".format( "found on hypervisor {1}".format(
vm_uuid, node_uuid)) vm_uuid, node_uuid))