Reputation: 1384
I have deployed a Node.js worker role on one of my Azure instances.
On the emulator, I could see the log in the Compute UI, or a locally stored log file. How do I access this file, or the log when deployed on Azure?
Kind of critical for debugging and note crashes, if any.
Upvotes: 0
Views: 457
Reputation: 16492
You essentially write logs and those logs will be written in Azure Table Storage. You add the code to perform logging in the onStart Method of the worker role.
Check out this SOF ANSWER and this LINK
Upvotes: 1