summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 21:35:05 -0500
committerJeff Carr <[email protected]>2025-09-04 21:35:05 -0500
commit193f27ec30a5efba7f1de6081d7317bb3c90dbf5 (patch)
tree0a6d23435d5f785e8e98ebbd9ba64081de690cf0 /config.go
parente7c6156562ba1ed5e083366b092ead258b62e5ae (diff)
add some more git .config fields
Diffstat (limited to 'config.go')
-rw-r--r--config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.go b/config.go
index b302969..2691cd8 100644
--- a/config.go
+++ b/config.go
@@ -53,15 +53,15 @@ func (repo *Repo) ValidateUTF8() error {
// exit if Marshal() works
return nil
} else {
- log.Printf("%s repo.Marshal() failed: %v\n", repo.GetFullPath(), err)
+ // log.Printf("%s repo.Marshal() failed: %v\n", repo.GetFullPath(), err)
}
// you only need to do this if Marshal() fails
err := bugpb.ValidateProtoUTF8(repo)
if err != nil {
- log.Printf("Protobuf UTF-8 validation failed: %v\n", err)
+ // log.Printf("Protobuf UTF-8 validation failed: %v\n", err)
}
if err := bugpb.SanitizeProtoUTF8(repo); err != nil {
- log.Warn("Sanitation failed:", err)
+ log.Warn("gitpb.ValidateUTF8()( failed:", err)
return err
}
return nil