diff options
| author | admin | 2026-03-29 22:05:47 +0200 |
|---|---|---|
| committer | admin | 2026-03-29 22:05:47 +0200 |
| commit | f1df3ec0d23783a3d80bdb66313e5d390cdbfaf6 (patch) | |
| tree | b7eee1d6b215183479d5bfb2c545d7c740528a54 | |
| parent | 9cc3133c40439075233470ede48c5a8d7d68669f (diff) | |
| download | curious-crawler-f1df3ec0d23783a3d80bdb66313e5d390cdbfaf6.tar.gz | |
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,6 @@ func main() { //app.fixAllCategories() //app.saveAllCategories() - //return app.deleteOrphanedArticles() app.topStories() app.wikipediaFixAllUrls() @@ -177,6 +176,7 @@ func (app *App) topStories() { if ok { article_id := app.getArticleIdFromUrl(story.Url) app.saveCategory(article_id, categories) + log.Debugf("topStories: story: %s adding categories: %+v\n", story.Url, categories) } else { log.Info("topStories: crawling for Categories: not ok. Check previous log output.") } |
