Tweak chatbot logging for deadlock detection

polling-api
Noah 2023-09-19 17:47:57 -07:00
parent e600250908
commit 267cda7989
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ func (h *BotHandlers) watchForDeadlock() {
h.client.Send(messages.Message{ h.client.Send(messages.Message{
Action: messages.ActionMessage, Action: messages.ActionMessage,
Channel: "@" + h.client.Username(), Channel: "@" + h.client.Username(),
Message: "deadlock ping", Message: fmt.Sprintf("deadlock ping %s", time.Now().Format(time.RFC3339)),
}) })
}() }()
@ -52,7 +52,7 @@ func (h *BotHandlers) watchForDeadlock() {
func (h *BotHandlers) onMessageFromSelf(msg messages.Message) { func (h *BotHandlers) onMessageFromSelf(msg messages.Message) {
// If it is our own DM channel thread, it's for deadlock detection. // If it is our own DM channel thread, it's for deadlock detection.
if msg.Channel == "@"+h.client.Username() { if msg.Channel == "@"+h.client.Username() {
log.Info("(Deadlock test) got echo from self, server still seems OK") log.Info("(Deadlock test) got echo from self, server still seems OK: %s", msg.Message)
h.deadlockLastOK = time.Now() h.deadlockLastOK = time.Now()
} }
} }