core: EvalWriteState produces a different message when deleting state

This commit is contained in:
Martin Atkins 2018-09-11 16:29:11 -07:00
parent d043dec488
commit 532277b7cc
1 changed files with 5 additions and 1 deletions

View File

@ -210,7 +210,11 @@ func (n *EvalWriteState) Eval(ctx EvalContext) (interface{}, error) {
panic("EvalWriteState used with pointer to nil ProviderSchema object") panic("EvalWriteState used with pointer to nil ProviderSchema object")
} }
log.Printf("[TRACE] EvalWriteState: writing state object for %s", absAddr) if obj != nil {
log.Printf("[TRACE] EvalWriteState: writing current state object for %s", absAddr)
} else {
log.Printf("[TRACE] EvalWriteState: removing current state object for %s", absAddr)
}
// TODO: Update this to use providers.Schema and populate the real // TODO: Update this to use providers.Schema and populate the real
// schema version in the second argument to Encode below. // schema version in the second argument to Encode below.