I want to see logs while calling functions in my chaincode, for debugging purposes. I tried something like this:
var logger = shim.NewLogger("chaincode_example02")
logger.Info("get_caller_data called");
I've viewed logs of the peer running the chaincode, but I couldn't find the above log. What am I doing wrong?