diff --git a/searchlightclient/osc/v1/facet.py b/searchlightclient/osc/v1/facet.py index e4f2236..02216c2 100644 --- a/searchlightclient/osc/v1/facet.py +++ b/searchlightclient/osc/v1/facet.py @@ -46,7 +46,6 @@ class ListFacet(lister.Lister): ) return parser - @utils.log_method(log) def take_action(self, parsed_args): self.log.debug("take_action(%s)", parsed_args) diff --git a/searchlightclient/osc/v1/resource_type.py b/searchlightclient/osc/v1/resource_type.py index 36894b6..68ab4ab 100644 --- a/searchlightclient/osc/v1/resource_type.py +++ b/searchlightclient/osc/v1/resource_type.py @@ -24,7 +24,6 @@ class ListResourceType(lister.Lister): log = logging.getLogger(__name__ + ".ListResourceType") - @utils.log_method(log) def take_action(self, parsed_args): self.log.debug("take_action(%s)", parsed_args) diff --git a/searchlightclient/osc/v1/search.py b/searchlightclient/osc/v1/search.py index cc33df1..abcff71 100644 --- a/searchlightclient/osc/v1/search.py +++ b/searchlightclient/osc/v1/search.py @@ -65,7 +65,6 @@ class SearchResource(lister.Lister): ) return parser - @utils.log_method(log) def take_action(self, parsed_args): self.log.debug("take_action(%s)", parsed_args)