#### 问题描述
如何修改才能对stdout.log文件进行分割?
在config/server.php中设置的,代码如下:
```
return [
'event_loop' => '',
'stop_timeout' => 2,
'pid_file' => runtime_path() . '/webman.pid',
'status_file' => runtime_path() . '/webman.status',
'stdout_file' => runtime_path() . '/logs/stdout.log',
'log_file' => runtime_path() . '/logs/workerman.log',
'size' => 10 * 1024 * 1024
];
```