stephb9959
2022-05-11 20:45:27 -07:00
parent 51868e5bee
commit b705c9b138

View File

@@ -209,8 +209,11 @@ namespace OpenWifi {
Logger().information(fmt::format("({}): Completed subscriber e-mail verification and password.",UInfo.email)); Logger().information(fmt::format("({}): Completed subscriber e-mail verification and password.",UInfo.email));
Poco::JSON::Object::Ptr Response; Poco::JSON::Object::Ptr Response;
ProvRequest.Do(Response); auto Status = ProvRequest.Do(Response);
Logger().information(fmt::format("({}): Completed subscriber e-mail verification. Provisioning notified.",UInfo.email)); std::stringstream ooo;
Response->stringify(ooo);
Logger().information(fmt::format("({}): Status: {}, Completed subscriber e-mail verification. Provisioning notified. {}",
UInfo.email, Status, ooo.str()));
SendHTMLFileBack(FormFile,FormVars); SendHTMLFileBack(FormFile,FormVars);
Logger().information(fmt::format("({}): Completed subscriber e-mail verification. FORM notified.",UInfo.email)); Logger().information(fmt::format("({}): Completed subscriber e-mail verification. FORM notified.",UInfo.email));
} else { } else {