summaryrefslogtreecommitdiff
path: root/identify.go
diff options
context:
space:
mode:
Diffstat (limited to 'identify.go')
-rw-r--r--identify.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/identify.go b/identify.go
index 52f144f..618e34c 100644
--- a/identify.go
+++ b/identify.go
@@ -2,8 +2,6 @@ package filepb
import (
"os"
-
- "go.wit.com/log"
)
// print the protobuf in human form
@@ -19,6 +17,6 @@ func IdentifyPB(filename string) (string, string, error) {
if err := pb.Unmarshal(data); err != nil {
return "", "", err
}
- log.Info("Identify protobuf file uuid =", pb.Uuid, "version =", pb.Version)
+ // log.Info("Identify protobuf file uuid =", pb.Uuid, "version =", pb.Version)
return pb.Uuid, pb.Version, nil
}