Added line breaks to console messages

This commit is contained in:
Denis Volkov 2022-09-21 09:10:46 -07:00
parent 3f96104df0
commit badeeacde1

View File

@ -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;
}