feat(cli): implement trace logging for configuration

- add trace logging to display loaded configuration for debugging
This commit is contained in:
Jeremiah Russell
2025-10-08 17:13:27 +01:00
committed by Jeremiah Russell
parent 66689b795d
commit 6dc425ebec

View File

@@ -63,6 +63,7 @@ async fn main() {
async fn run(args: Cli) -> Result<(), Error> {
let config = get_config()?;
log::trace!("Configuration loaded: {config:#?}");
if let Some(cmds) = args.command {
match cmds {
Commands::Message(list_cli) => list_cli.run(config.credential_file()).await?,