From 26ce49512652cc85492bd71abb18cc031a8d6fb4 Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Thu, 16 Dec 2021 13:55:26 -0800 Subject: [PATCH] Fix sprintf --- provider/pkg/provider/remotefilecopy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/pkg/provider/remotefilecopy.go b/provider/pkg/provider/remotefilecopy.go index 1be75026..68d3f745 100644 --- a/provider/pkg/provider/remotefilecopy.go +++ b/provider/pkg/provider/remotefilecopy.go @@ -75,6 +75,6 @@ func (c *remotefilecopy) RunCreate(ctx context.Context, host *provider.HostClien } func (c *remotefilecopy) RunDelete(ctx context.Context, host *provider.HostClient, urn resource.URN) error { - host.Log(ctx, diag.Debug, urn, fmt.Sprintf("CopyFile delete is a no-op", urn)) + host.Log(ctx, diag.Debug, urn, "CopyFile delete is a no-op") return nil }