{
auto appGUI = static_cast<AppGUI *>(data);
- std::string userIdsText = "Created usernames: { ";
+ std::string userIdsText = "Created usernames: {";
for (auto const& cred : appGUI->m_testContents.createdCredDescs)
{
+ userIdsText += "\"";
userIdsText += std::string(cred.first.begin(), cred.first.end());
+ userIdsText += "\"";
+ userIdsText += ",";
}
- userIdsText += "} ";
+ userIdsText += "}";
std::cout << userIdsText.c_str() << std::endl;
elm_object_text_set(appGUI->m_createdUserIds, userIdsText.c_str());
m_testContents.status = TestState::AUTH_IN_PROCESS;
m_testContents.username = elm_object_text_get(m_entry);
- log << "Registering username: " << m_testContents.username << std::endl;
+ log << "Authenticating username: \"" << m_testContents.username << "\"" << std::endl;
LogDebug(log.str().c_str());
ecore_thread_run(AuthenticateStaticCb, NULL, NULL, this);