Multiple choice technology web technology

How do we log errors in TRAQ application?

  1. Logging in Text Files on Web Server

  2. Logging in database ErrorLog Table

  3. Both A & B

  4. Logging in App Server in Service Code

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

The TRAQ application implements error logging by writing error details to text files stored on the web server. This is a common logging approach that provides persistence without requiring database connectivity during error scenarios. While database logging offers better querying capabilities, file-based logging ensures errors are captured even when database connections fail. Option C suggests both methods are used, but the question specifically asks for the primary method.