Skip to content

Commit

Permalink
Remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Jun 3, 2024
1 parent 6039788 commit f4e60bd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aquadoggo_cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ pub fn load_config() -> Result<(ConfigFilePath, ConfigFile)> {
// Parse command line arguments first to get optional config file path
let cli = Cli::parse();

println!("{:#?}", cli);

// Determine if a config file path was provided or if we should look for it in common locations
let config_file_path: ConfigFilePath = match &cli.config {
Some(path) => {
Expand All @@ -50,8 +48,6 @@ pub fn load_config() -> Result<(ConfigFilePath, ConfigFile)> {
figment = figment.merge(Toml::file(path));
}

println!("{:#?}", Env::raw().filter(|k| k == "CONFIG"));

let config = figment
.merge(Env::raw())
.merge(Serialized::defaults(cli))
Expand Down

0 comments on commit f4e60bd

Please sign in to comment.