I'm very new with Azure and IoT Edge, and I'm trying to understand how modules works.
I followed this good tutorial (https://learn.microsoft.com/en-us/azure/iot-edge/tutorial-c-module) and everything seems to run properly.
My question is about the printf
that are in the code. (for example on the point 3 of here : https://learn.microsoft.com/en-us/azure/iot-edge/tutorial-c-module#update-the-module-with-custom-code)
if (NULL == messageInstance)
{
printf("Failed allocating 'MESSAGE_INSTANCE' for pipelined message\r\n");
}
Where are the output printed ?
Normally it would be on the standard output, but my module is running in background on a virtual machine. Obviously I have access to this VM. How can I see it ?
It would be great for me, in order to have a better understanding of how modules work and communicate together and with the IoT Hub.
Thanks for helping me