aboutsummaryrefslogtreecommitdiffstats
path: root/moonclient
diff options
context:
space:
mode:
authorasteroide <thomas.duval@orange.com>2015-09-22 21:51:38 +0200
committerasteroide <thomas.duval@orange.com>2015-09-22 21:51:38 +0200
commit7cfacceb4d5c1860f866cbb3a140a293fde09359 (patch)
treed4c16283a0734c48d54913dc6edb20f834f9e85d /moonclient
parentff2cfa9c7abcdfd107974c2db8ffe8f9bdf1c2a0 (diff)
Remove some unneeded logs.
Change-Id: I9a39b183f2613081eafef28bc8e385b7c2fbb628
Diffstat (limited to 'moonclient')
-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(','))