Tweak chatbot logging for deadlock detection
This commit is contained in:
parent
e600250908
commit
267cda7989
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user