Observability Overview
Logging
Debugging with Logs
Observability Tools
Practice
Assignment
Back end Track
Under construction
<aside>
🚧
This page is currently under construction. Please check back later.
</aside>
Implementation plan:
- Why logging matters in production — you can't attach a debugger
- What to log: requests, errors, important business events
- What NOT to log: passwords, tokens, PII (GDPR awareness)
- Log levels:
INFO, WARN, ERROR, DEBUG, TRACE
- Choosing the right log level
- Logging in Spring Boot: SLF4J + Logback (default)
- Using the
Logger in code: logger.info(), logger.error()
- Configuring log levels in
application.properties
- Structured logging (brief awareness)
- Exercise: add meaningful logging to an existing service
The HackYourFuture curriculum is licensed under CC BY-NC-SA 4.0

*https://hackyourfuture.net/*
Found a mistake or have a suggestion? Let us know in the feedback form.