File tree 1 file changed +3
-3
lines changed
packages/hurl/src/cli/options
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -284,10 +284,10 @@ pub fn parse(allow_color: bool) -> Result<CliOptions, CliOptionsError> {
284
284
let config_options = if let Some ( hurlrc_file) = get_config_file ( ) {
285
285
parse_config_file ( & hurlrc_file) ?
286
286
} else {
287
- eprintln ! ( ">>> config file does not exist" ) ;
287
+ // eprintln!(">>> config file does not exist");
288
288
CliOptions :: default ( )
289
289
} ;
290
- eprintln ! ( ">>> config option repeat={:?}" , config_options. repeat) ;
290
+ // eprintln!(">>> config option repeat={:?}", config_options.repeat);
291
291
292
292
let opts = parse_matches ( & arg_matches, allow_color, config_options) ?;
293
293
if opts. input_files . is_empty ( ) {
@@ -308,7 +308,7 @@ fn get_config_file() -> Option<PathBuf> {
308
308
} ,
309
309
} ;
310
310
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());
312
312
if config_file. exists ( ) {
313
313
Some ( config_file)
314
314
} else {
You can’t perform that action at this time.
0 commit comments