diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/importer/importer.go | 2 | ||||
-rw-r--r-- | cmd/server/server.go | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/cmd/importer/importer.go b/cmd/importer/importer.go index 18a7a7b..47b046e 100644 --- a/cmd/importer/importer.go +++ b/cmd/importer/importer.go @@ -88,7 +88,7 @@ func Import(ctx context.Context, txtInput, sqliteOutput string) error { } } - fmt.Printf("Consolidating") + fmt.Printf("\nConsolidating...") err = db.Consolidade(ctx) if err != nil { return err diff --git a/cmd/server/server.go b/cmd/server/server.go index a0de547..76fc1e5 100644 --- a/cmd/server/server.go +++ b/cmd/server/server.go @@ -82,14 +82,12 @@ func handleConnection(conn net.Conn, db *db.DB) { q := strings.ReplaceAll(string(buf), "\n", "") - slog.Info("Query", "query", q) ws, err := db.SelectDict(context.Background(), q, 10) if err != nil { slog.Error("Error selecting", "error", err) return } - slog.Info("Count", "q", len(ws)) for _, w := range ws { fmt.Fprintf(conn, "%s\n%s\n\n", w.Word, w.Line) } |