From: Angus Salkeld Date: Wed, 6 Feb 2013 23:13:02 +0000 (+1100) Subject: Add missing logging import X-Git-Tag: 2014.1~923^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=861f1b70393a3bb3c40eeb09f3ec2ffa44fe0836;p=openstack-build%2Fheat-build.git Add missing logging import Change-Id: I863a4b69fe4d050165d304bbf630c57ce171b1bc --- 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):