feat: log channel status update time

This commit is contained in:
1808837298@qq.com
2024-06-16 14:53:39 +08:00
parent b069056bda
commit e8845ce1de
2 changed files with 18 additions and 1 deletions

View File

@@ -255,6 +255,7 @@ func UpdateChannelStatusById(id int, status int, reason string) {
// find channel by id success, update status and other info
info := channel.GetOtherInfo()
info["status_reason"] = reason
info["status_time"] = common.GetTimestamp()
channel.SetOtherInfo(info)
channel.Status = status
err = channel.Save()