We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ddf19d commit 364276cCopy full SHA for 364276c
mithril-client-cli/src/main.rs
@@ -85,6 +85,11 @@ pub struct Args {
85
86
impl Args {
87
pub async fn execute(&self, root_logger: Logger) -> MithrilResult<()> {
88
+ debug!(
89
+ root_logger,
90
+ "Mithril client CLI version: {}",
91
+ env!("CARGO_PKG_VERSION")
92
+ );
93
debug!(root_logger, "Run Mode: {}", self.run_mode);
94
let filename = format!("{}/{}.json", self.config_directory.display(), self.run_mode);
95
debug!(root_logger, "Reading configuration file '{filename}'.");
0 commit comments