From 53926ea5818ece2541c65932d7b6c29087cb5bca Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Fri, 7 Dec 2018 11:22:00 -0800 Subject: [PATCH] plugin: Fix incorrect trace log message in provider Close Was incorrectly printing out "PlanResourceChange" instead of "Close". --- plugin/grpc_provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/grpc_provider.go b/plugin/grpc_provider.go index 2d8e211119..6bab719c8e 100644 --- a/plugin/grpc_provider.go +++ b/plugin/grpc_provider.go @@ -528,7 +528,7 @@ func (p *GRPCProvider) ReadDataSource(r providers.ReadDataSourceRequest) (resp p // closing the grpc connection is final, and terraform will call it at the end of every phase. func (p *GRPCProvider) Close() error { - log.Printf("[TRACE] GRPCProvider: PlanResourceChange") + log.Printf("[TRACE] GRPCProvider: Close") // close the remote listener if we're running within a test if p.TestListener != nil {