summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-10 15:35:25 -0500
committerJeff Carr <[email protected]>2025-10-10 15:35:25 -0500
commite1e5f6db6b6e97ff14adca69cf607ccfd3dec60c (patch)
tree886939e8f87b1ead7e8220cfaac001afc37ae753
parent0ce8f62f9b6e8fa8a0fe7075b88b2b02482141c0 (diff)
try to keep this package from having any GO depsv0.0.6
-rw-r--r--README.md2
-rw-r--r--identify.go4
2 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index aca241e..5a93ed1 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
-# Standard Template for a GO Library
+Used to identify protobuf files (requires autogenpb)
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
}