Skip to content

Commit 7fd3991

Browse files
committed
fix: Delete "invalid value" debug message accidentally left in
Commit e0d71f8 added an "invalid value" debug message that I did not intend to commit. Remove it.
1 parent 7dbf718 commit 7fd3991

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

internal/template/reflect.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import (
1010

1111
func deepGetImpl(v reflect.Value, path []string) interface{} {
1212
if !v.IsValid() {
13-
log.Printf("invalid value\n")
1413
return nil
1514
}
1615
if len(path) == 0 {

0 commit comments

Comments
 (0)