return;
}
if (result != WAUTHN_ERROR_NONE) {
- std::cout << __FUNCTION__ << ": response_callback failed with code " << result
+ std::cout << __FUNCTION__ << ": response_callback failed: "
+ << get_error_message(result)
<< std::endl; // NOLINT(performance-avoid-endl)
testContents->succeeded = false;
return;
return;
}
if (result != WAUTHN_ERROR_NONE) {
- std::cout << __FUNCTION__ << ": response_callback failed with code " << result
+ std::cout << __FUNCTION__ << ": response_callback failed: "
+ << get_error_message(result)
<< std::endl; // NOLINT(performance-avoid-endl)
testContents->succeeded = false;
return;
if (result == WAUTHN_ERROR_NONE)
seenLastUpdateCallback = true;
else if (result != WAUTHN_ERROR_NONE_AND_WAIT) {
- std::cout << __FUNCTION__ << ": update_linked_data callback failed with code: " << result
+ std::cout << __FUNCTION__ << ": update_linked_data callback failed with code: "
+ << get_error_message(result)
<< std::endl; // NOLINT(performance-avoid-endl)
testContents.succeeded = false;
return;