diff --git a/internal/books/controller.go b/internal/books/controller.go index 0b7e51a..fed54ed 100644 --- a/internal/books/controller.go +++ b/internal/books/controller.go @@ -29,7 +29,7 @@ func ProcessBooks(books []Book, update bool) error { fmt.Printf(" B O O K S\n") utils.Sep() for _, book := range books { - fmt.Printf("Title: %s, Author: %s, ID: %s\n", book.Title, book.Author, book.ID) + fmt.Printf("Title: %s\n", book.Title) // If we're updating, the process is a bit different if update || !book.New { diff --git a/internal/series/controller.go b/internal/series/controller.go index 716d7c8..cbab53b 100644 --- a/internal/series/controller.go +++ b/internal/series/controller.go @@ -101,7 +101,6 @@ func ProcessSeries(series []Serie, update bool) error { } } } - // utils.Debug(serie) err = generateSerieMarkdown(serie) if err != nil {