fix(parser): Consistently log parser

This commit is contained in:
Ed Page 2022-05-16 09:54:19 -05:00
parent c74d3fb045
commit 0e04367826

View file

@ -1241,6 +1241,7 @@ impl<'help, 'cmd> Parser<'help, 'cmd> {
#[cfg(feature = "env")]
fn add_env(&mut self, matcher: &mut ArgMatcher, trailing_values: bool) -> ClapResult<()> {
debug!("Parser::add_env");
use crate::util::str_to_bool;
self.cmd.get_arguments().try_for_each(|a| {