summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-23 14:22:18 -0500
committerJeff Carr <[email protected]>2025-09-23 14:22:18 -0500
commit8e3008cfe8caeeba4e39cb2c363b6f89cb3036ff (patch)
treeda522482505226d67b1e4d5618c00473306364cc
parent884d8db5855ab91a5efa2ce0e5465be7d2279447 (diff)
remove noise
-rw-r--r--patch.proto4
-rw-r--r--set.table.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/patch.proto b/patch.proto
index 42c0ef3..bc4ad95 100644
--- a/patch.proto
+++ b/patch.proto
@@ -56,12 +56,12 @@ message Patch {
google.protobuf.Timestamp ctime = 24; // create time of the patch
bool applied = 25; // have you applied this patch?
bool upstream = 26; // has this patch been applied upstream?
- string patchId = 27; // patchId
+ string patchId = 27; // patchId `autogenpb:unique`
string treeHash = 28; // final tree Hash
}
// this is a "PATCH: [1/x]" series
-message Patches { // `autogenpb:marshal` `autogenpb:gui:Patch` `autogenpb:http autogenpb:var:Patches`
+message Patches { // `autogenpb:marshal` `autogenpb:gui:Patch` `autogenpb:http`
string uuid = 1; // `autogenpb:uuid:2679065e-c81d-4a00-aca4-03c158a834fb`
string version = 2; // `autogenpb:version:v2.0.0`
repeated Patch patches = 3;
diff --git a/set.table.go b/set.table.go
index b5f784e..49bc60f 100644
--- a/set.table.go
+++ b/set.table.go
@@ -21,7 +21,7 @@ func (pset *Set) PrintTable() {
}
func (mt *PatchesTable) PrintTable() {
- log.Info("ShowTable() SENDING TO GUI")
+ // log.Info("ShowTable() SENDING TO GUI")
mt.MakeTable()
cobol.PrintTable(mt.pb)
}