diff options
| author | 2025-08-26 12:16:54 +0700 | |
|---|---|---|
| committer | 2025-08-26 12:16:54 +0700 | |
| commit | bbe41e5b06ab540a38c8c6b4e0cf719ab31b8e55 (patch) | |
| tree | 02a7c7ce6bda276cd8c962f3c7b07457b774af97 /internal | |
| parent | 6af3f70cf878b3adaeb63f0fabc61f9e482ca216 (diff) | |
| download | web-bbe41e5b06ab540a38c8c6b4e0cf719ab31b8e55.tar.gz web-bbe41e5b06ab540a38c8c6b4e0cf719ab31b8e55.zip | |
fix: specify tag count and page count on enlist catalogue log
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/router/lang-blog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/router/lang-blog.go b/internal/router/lang-blog.go index 5c302bb..e5220c6 100644 --- a/internal/router/lang-blog.go +++ b/internal/router/lang-blog.go @@ -58,7 +58,7 @@ func Lang_Blog(l map[string]*locale.LocaleConfig, langs []string, b2Client *b2.B tagsMap[tag]++ } } - slog.Debug("enlist pages for catalogue", slog.Int("page_count", len(tagsMap)), slog.String("path", c.Path())) + slog.Debug("enlist pages for catalogue", slog.Int("tag_count", len(tagsMap)), slog.Int("page_count", len(pages)), slog.String("path", c.Path())) type Tag struct { Name string `json:"Name" yaml:"name"` |