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:
parent
481055d5cf
commit
ea2a61d85e
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue