remove this logline -- it is spammy and seems like a leftover dev debug line (#10665)

This commit is contained in:
Megan Marsh 2021-02-22 02:20:44 -08:00 committed by GitHub
parent 9a11fd4136
commit 079786f8d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -828,7 +828,6 @@ func (c *Core) renderVarsRecursively() (*interpolate.Context, error) {
for _, k := range deleteKeys {
for ind, kv := range sortedMap {
if kv.Key == k {
log.Printf("Deleting kv.Value: %s", kv.Value)
sortedMap = append(sortedMap[:ind], sortedMap[ind+1:]...)
break
}