spring-boot-mysql-rest-api-tutorial icon indicating copy to clipboard operation
spring-boot-mysql-rest-api-tutorial copied to clipboard

Feature/logging Adding logging functionality to the application

Open harshil15999 opened this issue 1 year ago • 0 comments

  1. General logging: Only important information (INFO, WARN, ERROR, and FATAL) is logged by default.
  2. Detailed web request/response logs: You'll have more details about web interactions.
  3. Focused Hibernate logging: You'll get warnings about potential Hibernate issues and detailed SQL statements for debugging database interactions, but exceptions are strictly logged as errors.
  4. Centralized logging: All log messages are written to a single file ("application.log") in the "logs/" directory.
  5. File rotation: The log file size is capped at 10MB, preventing excessive disk usage

harshil15999 avatar May 05 '24 07:05 harshil15999