helper/schema: Remove unused log line

Meant to remove this before finalizing the PR. :P
This commit is contained in:
Chris Marchesi 2017-05-30 21:19:28 -07:00 committed by Martin Atkins
parent c6647a3bb7
commit 6f422d8c44
1 changed files with 0 additions and 1 deletions

View File

@ -237,7 +237,6 @@ func (d *ResourceDiff) clear(key string) error {
// from ResourceDiff's own change data, in addition to existing diff, config, and state.
func (d *ResourceDiff) diffChange(key string) (interface{}, interface{}, bool, bool) {
old, new := d.getChange(key)
// log.Printf("\nkey:%s\n\nold:%s\n\nnew:%s\n", key, spew.Sdump(old), spew.Sdump(new))
if !old.Exists {
old.Value = nil