I have an event in the contract , and upon the event fires I could able to see by a java listener as below
public void onTransactionExecuted(TransactionExecutionSummary summary) {
List<LogInfo> listLogs= summary.getLogs();// This gives you list of log info
// now Iterate and print the details
}
upon printing the loginfo object I get something like LogInfo{address=cd5805d60bbf9afe69a394c2bda10f6dae2c39af, topics=[37637aa70af5cd14eda4054cc4323408c237c26de60d49064db916e476c29e2e 67fad3bfa1e0321bd021ca805ce14876e50acac8ca8532eda8cbf924da565160 ], data=000000000000000000000000cd2a3d9f938e13cd947ec05abc7fe734df8dd826}.
I know it is some sort of abi encoded or serialized, but I want to decode what are the information I have in the logs.