Skip to content

Commit 95ffb31

Browse files
committed
Add extra experimental logging to the mobile-app subcommand
1 parent e663a52 commit 95ffb31

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/commands/mobile_app/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
use anyhow::Result;
44
use clap::{ArgMatches, Command};
5+
use log::debug;
56

67
use crate::utils::args::ArgExt as _;
78

@@ -35,6 +36,8 @@ pub fn make_command(mut command: Command) -> Command {
3536
}
3637

3738
pub fn execute(matches: &ArgMatches) -> Result<()> {
39+
debug!("EXPERIMENTAL: The mobile-app subcommand is experimental and may be updated without notice in the future.");
40+
3841
macro_rules! execute_subcommand {
3942
($name:ident) => {{
4043
if let Some(sub_matches) =

0 commit comments

Comments
 (0)