From f15d66f28a62ee90da4755847ada11b6972ece98 Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Fri, 22 Dec 2017 16:49:01 -0800 Subject: [PATCH] Remove noisy log statement (#896) * Remove noisy log statement * Remove unused import --- google/datasource_helpers.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/google/datasource_helpers.go b/google/datasource_helpers.go index 2692399e..467d0ce5 100644 --- a/google/datasource_helpers.go +++ b/google/datasource_helpers.go @@ -1,8 +1,6 @@ package google import ( - "log" - "github.com/hashicorp/terraform/helper/schema" ) @@ -15,8 +13,6 @@ import ( func datasourceSchemaFromResourceSchema(rs map[string]*schema.Schema) map[string]*schema.Schema { ds := make(map[string]*schema.Schema, len(rs)) for k, v := range rs { - log.Printf("[DEBUG] datasourceSchemaFromResourceSchema: %s", k) - dv := &schema.Schema{ Computed: true, ForceNew: false,