diff options
author | Ruan HE <ruan.he@orange.com> | 2015-09-22 20:22:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-09-22 20:22:19 +0000 |
commit | c572f02590ae0e70118bb6eec71b3bfdf3fb2b25 (patch) | |
tree | 3afd27a9993d90147c0e44913a96bba689b1258f /moonclient | |
parent | 412fb93e6e35ff5f30c3835a65d80591ab95d580 (diff) | |
parent | 7cfacceb4d5c1860f866cbb3a140a293fde09359 (diff) |
Merge "Remove some unneeded logs."
Diffstat (limited to 'moonclient')
-rw-r--r-- | moonclient/moonclient/metarules.py | 3 |
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(',')) |