Concept Flow - SLF4J and Logback basics
Start Application
Create Logger Instance
Call Logger Method (e.g., info)
SLF4J Formats Message
Logback Receives Log Event
Logback Applies Configuration
Log Message Written to Output (Console/File)
End
This flow shows how a Spring Boot app uses SLF4J to send log messages that Logback formats and writes to console or files.