Skip to content

Commit

Permalink
Change inbound port check log level to debug.
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Táskai <[email protected]>
  • Loading branch information
Dominik Táskai committed Jan 6, 2024
1 parent 97bb771 commit c5cc585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linkerd/app/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ pub fn parse_config<S: Strings>(strings: &S) -> Result<super::Config, EnvError>
let mut ports = match parse(strings, ENV_INBOUND_PORTS, parse_port_range_set)? {
Some(ports) => ports.into_iter().flatten().collect::<HashSet<_>>(),
None => {
error!("No inbound ports specified via {}", ENV_INBOUND_PORTS,);
debug!("No inbound ports specified via {}", ENV_INBOUND_PORTS,);
Default::default()
}
};
Expand Down

0 comments on commit c5cc585

Please sign in to comment.