diff options
| author | Jeff Carr <[email protected]> | 2025-10-09 11:22:08 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-09 13:15:57 -0500 |
| commit | 95a24844db73df3e55d30b8f96e1e05c4974b71f (patch) | |
| tree | ba09d2b3240b5255a28d593622b185cf0f39a1f6 | |
| parent | f47fbeed4d6b19f3859a3e4d417c4dc2592a5b38 (diff) | |
duh
| -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"] } |
