Omkar Khair
Omkar Khair

Reputation: 1384

View Windows Azure Node.js worker role log file

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

Answers (1)

Naveen Vijay
Naveen Vijay

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

Related Questions