Remove instrumentation from tag::get_tags
This commit is contained in:
parent
87b9b713b2
commit
e7bc58cfe6
1 changed files with 0 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
use std::collections::HashMap;
|
||||
|
||||
use serde_derive::Serialize;
|
||||
use tracing::instrument;
|
||||
|
||||
use crate::page::Page;
|
||||
|
||||
|
@ -12,7 +11,6 @@ pub struct Tag {
|
|||
pub posts: Vec<String>,
|
||||
}
|
||||
|
||||
#[instrument(skip(posts))]
|
||||
pub fn get_tags<'a>(posts: impl IntoIterator<Item = &'a Page>) -> HashMap<String, Tag> {
|
||||
let mut tags: HashMap<String, Tag> = HashMap::new();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue