Enis Afgan 8 лет назад
Родитель
Сommit
9bf238c8c0
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      cloudbridge/cloud/providers/aws/helpers.py

+ 2 - 2
cloudbridge/cloud/providers/aws/helpers.py

@@ -250,8 +250,8 @@ class BotoGenericService(object):
         :type kwargs: ``dict``
         :type kwargs: ``dict``
         :param kwargs: Arguments to be passed as-is to the service method
         :param kwargs: Arguments to be passed as-is to the service method
         """
         """
-        log.debug("Creating a resource by invoking %s on these arguments",
-                  boto_method, **kwargs)
+        log.debug("Creating a resource by invoking %s on these arguments: %s",
+                  boto_method, kwargs)
         trimmed_args = trim_empty_params(kwargs)
         trimmed_args = trim_empty_params(kwargs)
         result = getattr(self.boto_conn, boto_method)(**trimmed_args)
         result = getattr(self.boto_conn, boto_method)(**trimmed_args)
         if isinstance(result, list):
         if isinstance(result, list):