♻️ Implement some delayed kernel events using task queues https://github.com/siyuan-note/siyuan/issues/12393

This commit is contained in:
Daniel 2024-09-05 22:13:28 +08:00
parent 01989c7357
commit 108dc32098
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 1 additions and 5 deletions

View file

@ -49,7 +49,7 @@ func WaitForUILoaded() {
for !IsUILoaded {
time.Sleep(200 * time.Millisecond)
if time.Since(start) > 30*time.Second {
logging.LogErrorf("wait for ui loaded timeout")
logging.LogErrorf("wait for ui loaded timeout: %s", logging.ShortStack())
break
}
}