Skip to content
Snippets Groups Projects
Commit 3162a342 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Add newlines to output messages

parent 0756aa2b
No related branches found
No related tags found
No related merge requests found
......@@ -257,7 +257,7 @@ func printChanRequest(requestor contact.Contact, message string) {
requestor.ID)
jww.INFO.Printf(msg)
fmt.Printf(msg)
msg = fmt.Sprintf("Authentication channel request message: %s", message)
msg = fmt.Sprintf("Authentication channel request message: %s\n", message)
jww.INFO.Printf(msg)
fmt.Printf(msg)
}
......@@ -298,7 +298,7 @@ func addAuthenticatedChannel(client *api.Client, recipientID *id.ID,
recipientContact = recipient
}
msg := fmt.Sprintf("Adding authenticated channel for: %s",
msg := fmt.Sprintf("Adding authenticated channel for: %s\n",
recipientID)
jww.INFO.Printf(msg)
fmt.Printf(msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment