Multiple choice technology embedded technologies

Which of the following is the format in which logging is made in Trace & Error log:

  1. file name : process name : timestamp : line : trace group : logged message

  2. timestamp : file name : process name : line : trace group : logged message

  3. timestamp : process name : file name : line : logged message : trace group

  4. timestamp : process name : file name : line : trace group : logged message

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The standard Trace & Error log format begins with timestamp for chronological ordering, followed by process name for multi-process systems, then the file name and line number for precise source location, the trace group for categorization, and finally the actual logged message. Options A and B are incorrect because they don't start with timestamp. Option D incorrectly places trace group before the message.