diff options
author | Nick White <git@njw.name> | 2021-11-09 15:52:28 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2021-11-09 15:52:28 +0000 |
commit | 9313b0d7c67a0cc6f0532f5c2520f2fc3837b57c (patch) | |
tree | 9cc36c0897f7e788960810cb10a67d5a2844ed4e /cmd | |
parent | 33c0d65d3e9bf90cc8b462878b253bbbdc936435 (diff) |
lspipeline-ng: Remove debugging printf
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/lspipeline-ng/main.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/lspipeline-ng/main.go b/cmd/lspipeline-ng/main.go index dbafafa..632e6ca 100644 --- a/cmd/lspipeline-ng/main.go +++ b/cmd/lspipeline-ng/main.go @@ -128,7 +128,6 @@ func getBookDetails(conn LsPipeliner, key string) (date time.Time, done bool, er // done or inprogress channels as appropriate, or sending an error to errc // on failure. func getBookDetailsChan(conn LsPipeliner, wg *sync.WaitGroup, key string, done chan bookpipeline.ObjMeta, inprogress chan bookpipeline.ObjMeta, errc chan error) { - fmt.Printf("getting book details for %s\n", key) date, isdone, err := getBookDetails(conn, key) if err != nil { wg.Done() |