Remove noisy log statement (#896)

* Remove noisy log statement

* Remove unused import
This commit is contained in:
Vincent Roseberry 2017-12-22 16:49:01 -08:00 committed by GitHub
parent d8e5dc8efc
commit f15d66f28a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,