1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00

edited error messages

This commit is contained in:
postmannen 2022-04-05 12:12:49 +02:00
parent 481055d5cf
commit ea2a61d85e

View file

@ -80,12 +80,12 @@ func (c *centralAuth) addPublicKey(proc process, msg Message) {
c.dbUpdatePublicKey(string(msg.FromNode), msg.Data)
if ok {
er := fmt.Errorf("info: updated public key for node: %v", msg.FromNode)
er := fmt.Errorf("info: updated with new public key for node: %v", msg.FromNode)
fmt.Printf(" * %v\n", er)
c.errorKernel.infoSend(proc, msg, er)
}
if !ok {
er := fmt.Errorf("info: added new node with public key: %v", msg.FromNode)
er := fmt.Errorf("info: added public key for new node: %v", msg.FromNode)
fmt.Printf(" * %v\n", er)
c.errorKernel.infoSend(proc, msg, er)
}