summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuan HE <ruan.he@orange.com>2015-09-22 20:22:19 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-09-22 20:22:19 +0000
commitc572f02590ae0e70118bb6eec71b3bfdf3fb2b25 (patch)
tree3afd27a9993d90147c0e44913a96bba689b1258f
parent412fb93e6e35ff5f30c3835a65d80591ab95d580 (diff)
parent7cfacceb4d5c1860f866cbb3a140a293fde09359 (diff)
Merge "Remove some unneeded logs."
-rw-r--r--moonclient/moonclient/metarules.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/moonclient/moonclient/metarules.py b/moonclient/moonclient/metarules.py
index c922afb5..51f6a97f 100644
--- a/moonclient/moonclient/metarules.py
+++ b/moonclient/moonclient/metarules.py
@@ -119,8 +119,6 @@ class SubMetaRuleShow(Lister):
parsed_args.intraextension = self.app.intraextension
data = self.app.get_url("/v3/OS-MOON/intra_extensions/{}/sub_meta_rules".format(parsed_args.intraextension),
authtoken=True)
- import json
- self.log.debug(json.dumps(data, indent=4))
return (
("id", "name", "algorithm", "subject categories", "object categories", "action categories"),
((
@@ -190,7 +188,6 @@ class SubMetaRuleSet(Command):
action_categories = parsed_args.action_categories
if not action_categories:
action_categories = ""
- self.log.debug("object_categories = {}".format(object_categories))
subject_categories = map(lambda x: x.strip(), subject_categories.split(','))
action_categories = map(lambda x: x.strip(), action_categories.split(','))
object_categories = map(lambda x: x.strip(), object_categories.split(','))