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 e663a52 commit 95ffb31Copy full SHA for 95ffb31
1 file changed
src/commands/mobile_app/mod.rs
@@ -2,6 +2,7 @@
2
3
use anyhow::Result;
4
use clap::{ArgMatches, Command};
5
+use log::debug;
6
7
use crate::utils::args::ArgExt as _;
8
@@ -35,6 +36,8 @@ pub fn make_command(mut command: Command) -> Command {
35
36
}
37
38
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
+
41
macro_rules! execute_subcommand {
42
($name:ident) => {{
43
if let Some(sub_matches) =
0 commit comments