swoft icon indicating copy to clipboard operation
swoft copied to clipboard

日志重复打印

Open Ederth opened this issue 5 years ago • 0 comments

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 image image image

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);
    }
});

Ederth avatar Sep 17 '20 08:09 Ederth