浏览代码

Use `tracing::warn` when the dioxus CLI is not used (#2250)

Zan Pan 1 年之前
父节点
当前提交
bd852c68fd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/cli-config/src/lib.rs

+ 1 - 1
packages/cli-config/src/lib.rs

@@ -50,7 +50,7 @@ pub static CURRENT_CONFIG: once_cell::sync::Lazy<
     CURRENT_CONFIG_JSON
         .and_then(|config| serde_json::from_str(config).ok())
         .ok_or_else(|| {
-            tracing::error!("A library is trying to access the crate's configuration, but the dioxus CLI was not used to build the application.");
+            tracing::warn!("A library is trying to access the crate's configuration, but the dioxus CLI was not used to build the application.");
             DioxusCLINotUsed
     })
 });