summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-01-22 18:15:04 +0000
committerNick White <git@njw.name>2020-01-22 18:15:04 +0000
commit29fa900f3d5ad69d50d9a28f6875c3f81961b3f1 (patch)
tree55345618a0681d9be8b45d59709a0a547639aa0f
parent172c1c962cf895444579f2b9f44e27cf35e90980 (diff)
[pagegraph] Stop printing debug output
-rw-r--r--cmd/pagegraph/main.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/pagegraph/main.go b/cmd/pagegraph/main.go
index 5ecce76..a89c7a3 100644
--- a/cmd/pagegraph/main.go
+++ b/cmd/pagegraph/main.go
@@ -49,7 +49,6 @@ func main() {
Conf: wc,
Path: fmt.Sprintf("%d_word", n),
}
- fmt.Printf("conf for word %d: %f\n", n, wc)
confs = append(confs, &c)
}
xlabel = "Word number"
@@ -60,7 +59,6 @@ func main() {
cconfs := make(map[string]*bookpipeline.Conf)
for _, c := range confs {
cconfs[c.Path] = c
- fmt.Printf("conf for word %s: %f\n", c.Path, c.Conf)
}
fn := flag.Arg(1)