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,