summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
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