From 861f1b70393a3bb3c40eeb09f3ec2ffa44fe0836 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Thu, 7 Feb 2013 10:13:02 +1100 Subject: [PATCH] Add missing logging import Change-Id: I863a4b69fe4d050165d304bbf630c57ce171b1bc --- heat/engine/resources/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/heat/engine/resources/__init__.py b/heat/engine/resources/__init__.py index 803b84ae..0ffe1d50 100644 --- a/heat/engine/resources/__init__.py +++ b/heat/engine/resources/__init__.py @@ -12,6 +12,10 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. +from heat.openstack.common import log as logging + + +logger = logging.getLogger(__name__) def _register_resources(type_pairs): -- 2.45.2