File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lading_payload/src/dogstatsd Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ use std::fmt;
33
44use rand:: {
55 distributions:: { OpenClosed01 , WeightedIndex } ,
6- prelude:: { Distribution , SliceRandom } ,
6+ prelude:: Distribution ,
77 Rng ,
88} ;
99
1010use crate :: { common:: strings, dogstatsd:: metric:: template:: Template , Error , Generator } ;
11- use tracing:: debug ;
11+ use tracing:: info ;
1212
1313use super :: {
1414 choose_or_not_ref,
@@ -52,7 +52,7 @@ impl MetricGenerator {
5252 {
5353 let mut templates = Vec :: with_capacity ( num_contexts) ;
5454
55- debug ! ( "Generating metric templates for {} contexts." , num_contexts) ;
55+ info ! ( "Generating metric templates for {} contexts." , num_contexts) ;
5656 for _ in 0 ..num_contexts {
5757 let tags = tags_generator. generate ( & mut rng) ;
5858 let name_sz = name_length. sample ( & mut rng) as usize ;
You can’t perform that action at this time.
0 commit comments