diff --git a/docs/mindformers/docs/source_en/feature/logging.md b/docs/mindformers/docs/source_en/feature/logging.md
index 7c834e7bf71914b9324805375dc6066ad24d56d0..2cc02762a688757413ff41b6705754733e290da0 100644
--- a/docs/mindformers/docs/source_en/feature/logging.md
+++ b/docs/mindformers/docs/source_en/feature/logging.md
@@ -14,10 +14,10 @@ During the training process, MindSpore Transformers will generate a training log
When the training task is started using the `ms_run` method, an additional log directory will be generated in the output directory by default: `./msrun_log`.
-| Folder | Description |
-|-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| log | The log information of each card is divided into `rank_{i}` folders. (`i` corresponds to the NPU card number used for training tasks)
Each `rank_{i}` folder will include `info.log` and `error.log` to record the INFO level and ERROR level information output during training respectively. |
-| msrun_log | `worker_{i}.log` is used to record the training log of each card (including error information), and `scheduler.log` records the startup information of msrun.
Training log information is usually viewed through this folder. |
+| Folder | Description |
+|-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| log | The log information of each card is divided into `rank_{i}` folders. (`i` corresponds to the NPU card number used for training tasks)
Each `rank_{i}` folder will include `info.log` and `error.log` to record the INFO level and ERROR level information output during training respectively. The default maximum size for a single log file is 50 MB, with a maximum of 5 backup logs. |
+| msrun_log | `worker_{i}.log` is used to record the training log of each card (including error information), and `scheduler.log` records the startup information of msrun.
Training log information is usually viewed through this folder. |
Take an 8-rank task started by `msrun` as an example, the specific log structure is as follows:
diff --git a/docs/mindformers/docs/source_zh_cn/feature/logging.md b/docs/mindformers/docs/source_zh_cn/feature/logging.md
index 8e73c689816c479d9f853cd3210b482ef2a9b154..7fb300ef124fd164102ea2f617648e762549b995 100644
--- a/docs/mindformers/docs/source_zh_cn/feature/logging.md
+++ b/docs/mindformers/docs/source_zh_cn/feature/logging.md
@@ -14,10 +14,10 @@ MindSpore Transformers 会将模型的训练配置、训练步数、Loss、吞
而当使用 `ms_run` 方式启动训练任务时,将会默认同时在输出目录下额外生成日志目录: `./msrun_log` 。
-| 文件夹 | 描述 |
-|------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
-| log | 以 `rank_{i}` 文件夹来划分保存每一张卡的日志信息。( `i` 对应为训练任务所用的 NPU 卡号)
每一个 `rank_{i}` 文件夹底下将包括 `info.log` 和 `error.log` 来分别记录训练时输出的 INFO 级别和 ERROR 级别的信息。 |
-| msrun_log | 以 `worker_{i}.log` 来记录每一张卡的训练日志(包括报错信息), `scheduler.log` 则记录了 msrun 的启动信息。
一般更常通过此文件夹查看训练日志信息。 |
+| 文件夹 | 描述 |
+|------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| log | 以 `rank_{i}` 文件夹来划分保存每一张卡的日志信息。( `i` 对应为训练任务所用的 NPU 卡号)
每一个 `rank_{i}` 文件夹底下将包括 `info.log` 和 `error.log` 来分别记录训练时输出的 INFO 级别和 ERROR 级别的信息。单个日志默认大小为50M,且最多有5个日志备份。 |
+| msrun_log | 以 `worker_{i}.log` 来记录每一张卡的训练日志(包括报错信息), `scheduler.log` 则记录了 msrun 的启动信息。
一般更常通过此文件夹查看训练日志信息。 |
以一个使用 `msrun` 当时启动的 8 卡任务为例,具体日志结构如下所示: