add google.protobuf.Value test

This commit is contained in:
2023-03-08 23:04:37 +08:00
parent 0c37361ad7
commit cdbc566f3f
4 changed files with 3 additions and 14 deletions
@@ -31,16 +31,6 @@ FString UTurboLinkTestGameInstance::DumpBytes(const FBytes& Bytes)
return ret;
}
void UTurboLinkTestGameInstance::DumpMapMessage(const TMap<FInt64, FGrpcUserRegisterRequestAddress>& Message)
{
FString temp = "";
for (const auto& item : Message)
{
temp += FString::Printf(TEXT("%s:[%s,%s],"), *UTurboLinkGrpcUtilities::CastInt64ToString(item.Key), *item.Value.Address, *item.Value.PostalCode);
}
UE_LOG(LogTemp, Warning, TEXT("ExtAddress={%s}"), *temp);
}
void UTurboLinkTestGameInstance::DumpMessage(const FGrpcUserRegisterRequest& Message)
{
/*
@@ -23,10 +23,6 @@ public:
public:
UFUNCTION(BlueprintCallable)
void DumpMessage(const FGrpcUserRegisterRequest& Message);
UFUNCTION(BlueprintCallable)
void DumpMapMessage(const TMap<FInt64, FGrpcUserRegisterRequestAddress>& Message);
protected:
FString DumpBytes(const FBytes& Bytes);