swoft
swoft copied to clipboard
日志重复打印
| Q | A |
|---|---|
| Bug report? | yes |
| Feature request? | no |
| Swoft version | 2.0.10 |
| Swoole version | 4.5.3 |
| PHP version | 7.3.21 |
| Runtime environment | Docker |
Describe the bug 多个协程下,可能出现日志重复打印
Expected behavior 并发下日志不能重复打印
Screenshots

Details
Describe what you are trying to achieve and what goes wrong.
sgo(function () {
$i = 5;
while ($i--) {
Co::sleep(0.01);
Log::info((string)Co::id() . ':' . $i);
Log::error((string)Co::id() . ':' . $i);
}
});
sgo(function () {
$i = 5;
while ($i--) {
Co::sleep(0.01);
Log::info((string)Co::id() . ':' . $i);
Log::error((string)Co::id() . ':' . $i);
}
});