vote up 0 vote down star

I am having an VBScript files which runs by many instance of jobs. I need to log the error information if any error occurs in the script processing. If i maintain a log file then how can i differentiate the log file for each instances (around 10 simultaneous instances) of vb script calling.

I dont go for any db logging.

Please suggest some good ways.

flag

70% accept rate
Removed and tag. – Brad Gilbert Oct 16 '08 at 23:47

1 Answer

vote up 0 vote down check

I would use the same log file for all instances. I would then have each instance create a GUID:

http://www.microsoft.com/technet/scriptcenter/resources/qanda/feb05/hey0221.mspx

When an error is logged by an instance, it uses the GUID to identify itself. This way it shouldn't matter if you have 10 or 50 instances, they will be unique in logging and you won't have a ton of log files everywhere.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.