diff --git a/docs/source_en/FAQ.md b/docs/source_en/FAQ.md
index 9d01a8a91699c6cbc0d2d7ffce2eeeabc29ffbc9..8424f899d001d602326ebb6c034e7efb05be36cb 100644
--- a/docs/source_en/FAQ.md
+++ b/docs/source_en/FAQ.md
@@ -191,6 +191,12 @@ A: Currently, the PyNative mode supports only Ascend and GPU and does not suppor
+Q: For Ascend users, how to get more detailed logs when the `run time error` is reported?
+
+A: More detailed logs info can be obtained by modify slog config file. You can get different level by modify `/var/log/npu/conf/slog/slog.conf`. The values are as follows: 0:debug、1:info、2:warning、3:error、4:null(no output log), default 1.
+
+
+
Q: What can I do if the error message `Pynative run op ExpandDims failed` is displayed when the ExpandDims operator is used? The code is as follows:
```python
diff --git a/docs/source_zh_cn/FAQ.md b/docs/source_zh_cn/FAQ.md
index c96beb992d79ff308ee0445657d82ce19401285a..a27a12cbfe32ae64713dba7fa5a8338dc0a5055a 100644
--- a/docs/source_zh_cn/FAQ.md
+++ b/docs/source_zh_cn/FAQ.md
@@ -223,6 +223,12 @@ A:pynative 模式目前只支持Ascend和GPU,暂时还不支持CPU。
+Q:在Ascend平台上,执行用例有时候会报错run time error,如何获取更详细的日志帮助问题定位?
+
+A:可以通过开启slog获取更详细的日志信息以便于问题定位,修改`/var/log/npu/conf/slog/slog.conf`中的配置,可以控制不同的日志级别,对应关系为:0:debug、1:info、2:warning、3:error、4:null(no output log),默认值为1。
+
+
+
Q:使用ExpandDims算子报错:`Pynative run op ExpandDims failed`。具体代码:
```python