From 6e1f54238a79b4ca25e111da620008b0fec66221 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 5 Jul 2025 12:33:11 +0800 Subject: [PATCH] :art: Database grouping by field https://github.com/siyuan-note/siyuan/issues/10964 --- kernel/model/transaction.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/model/transaction.go b/kernel/model/transaction.go index c0a1a87cd..a539f6b16 100644 --- a/kernel/model/transaction.go +++ b/kernel/model/transaction.go @@ -100,6 +100,7 @@ func flushTx(tx *Transaction) { util.PushMsg(Conf.Language(222), 5000) case TxErrWriteAttributeView: util.PushMsg(Conf.language(258), 5000) + logging.LogErrorf("handle attribute view failed: %s", txErr.msg) default: txData, _ := gulu.JSON.MarshalJSON(tx) logging.LogFatalf(logging.ExitCodeFatal, "transaction failed [%d]: %s\n tx [%s]", txErr.code, txErr.msg, txData)