diff options
Diffstat (limited to 'doWalk.go')
| -rw-r--r-- | doWalk.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ import ( "go.wit.com/lib/debian" "go.wit.com/lib/protobuf/zoopb" "go.wit.com/log" + "google.golang.org/protobuf/encoding/prototext" ) func doWalk() (string, error) { @@ -62,7 +63,7 @@ func doWalk() (string, error) { } counter += 1 me.pb.AppendByFilename(newdeb) - config.PrintStrings(newdeb) + log.Info(prototext.Format(newdeb)) // arch := deb.ControlData["Architecture"] } |
