Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Commit

Permalink
do not log too long tags as warning
Browse files Browse the repository at this point in the history
  • Loading branch information
segler-alex committed May 27, 2020
1 parent 354ebc2 commit ac22cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/refresh/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub fn refresh_cache_items(
if item_current.len() < max_cache_item_len {
to_insert.insert(item_current, *items_current.get(item_current).unwrap_or(&(0,0)));
}else{
warn!("cached '{}' item too long: '{}'", station_column_name, item_current);
debug!("cached '{}' item too long: '{}'", station_column_name, item_current);
}
} else {
let value_new = *items_current.get(item_current).unwrap_or(&(0,0));
Expand Down

0 comments on commit ac22cfb

Please sign in to comment.