Skip to content

Commit 481ff87

Browse files
committed
WIP
1 parent 07de4d1 commit 481ff87

File tree

1 file changed

+3
-3
lines changed
  • packages/hurl/src/cli/options

1 file changed

+3
-3
lines changed

packages/hurl/src/cli/options/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,10 @@ pub fn parse(allow_color: bool) -> Result<CliOptions, CliOptionsError> {
284284
let config_options = if let Some(hurlrc_file) = get_config_file() {
285285
parse_config_file(&hurlrc_file)?
286286
} else {
287-
eprintln!(">>> config file does not exist");
287+
//eprintln!(">>> config file does not exist");
288288
CliOptions::default()
289289
};
290-
eprintln!(">>> config option repeat={:?}", config_options.repeat);
290+
//eprintln!(">>> config option repeat={:?}", config_options.repeat);
291291

292292
let opts = parse_matches(&arg_matches, allow_color, config_options)?;
293293
if opts.input_files.is_empty() {
@@ -308,7 +308,7 @@ fn get_config_file() -> Option<PathBuf> {
308308
},
309309
};
310310
let config_file = Path::new(&config_home).join("hurlrc").to_owned();
311-
eprintln!(">>> config_file={}", config_file.display());
311+
//eprintln!(">>> config_file={}", config_file.display());
312312
if config_file.exists() {
313313
Some(config_file)
314314
} else {

0 commit comments

Comments
 (0)