Added line breaks to console messages
This commit is contained in:
parent
3f96104df0
commit
badeeacde1
@ -92,7 +92,7 @@ namespace AmenDataSync
|
||||
prayer_contact["emailaddress1"] = email;
|
||||
prayer_contact["mobilephone"] = phone;
|
||||
contactid = client.Create(prayer_contact);
|
||||
responseMessage += "Contact added: " + contactid;
|
||||
responseMessage += "Contact added: " + contactid + "\r\n";
|
||||
}
|
||||
|
||||
//insert prayer
|
||||
@ -104,11 +104,11 @@ namespace AmenDataSync
|
||||
prayer["hmg_prayertopic"] = "177780005"; //General
|
||||
|
||||
Guid prayerid = client.Create(prayer);
|
||||
responseMessage += "Prayer added: " + prayerid;
|
||||
responseMessage += "Prayer added: " + prayerid + "\r\n";
|
||||
break;
|
||||
|
||||
default:
|
||||
responseMessage = "No task specified.";
|
||||
responseMessage = "No task specified.\r\n";
|
||||
break;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user