diff options
| author | Ricardo Carrillo Cruz <emaildericky@gmail.com> | 2011-02-11 22:02:05 +0100 |
|---|---|---|
| committer | Ricardo Carrillo Cruz <emaildericky@gmail.com> | 2011-02-11 22:02:05 +0100 |
| commit | 7bc6ea8911e95c33b685c8f9b9a0e649f1ebbe93 (patch) | |
| tree | 8182ee0f523786c85349ee2e15ada217f6dcccaf /nova | |
| parent | 7c78d71eba66b64f2a2cac0309dcd01f2acf8b4d (diff) | |
| download | nova-7bc6ea8911e95c33b685c8f9b9a0e649f1ebbe93.tar.gz nova-7bc6ea8911e95c33b685c8f9b9a0e649f1ebbe93.tar.xz nova-7bc6ea8911e95c33b685c8f9b9a0e649f1ebbe93.zip | |
Added LOG line to describe groups function to find out what's going
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/ec2/cloud.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index c80e1168a..4dc074fd5 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -324,6 +324,8 @@ class CloudController(object): groups = db.security_group_get_by_project(context, context.project_id) groups = [self._format_security_group(context, g) for g in groups] + LOG.debug(_("Groups after format_security_group: %s"), + groups, context=context) if not group_name is None: groups = [g for g in groups if g.name in group_name] |
