K9Intermediate
Log Analysis Exercise
30 minWhen troubleshooting
Format: Learn to find problems from logs.
Log levels:
DEBUG: Most detailed, used during development
INFO: Normal operation records ("User 123 logged in")
WARN: Potential issues ("API response slow, took 3 seconds")
ERROR: Errors but the system is still running ("Email sending failed")
FATAL: System crash-level errors ("Database connection lost")
Exercise: What log level should the following messages use?
- "User uploaded a 10MB file" -> ?
- "Database query took 5 seconds" -> ?
- "Unable to connect to payment service" -> ?
- "User password verification successful" -> ?
- "Disk space only 5% remaining" -> ?