Logger

The Logger Middleware provides automatic logging of incoming HTTP requests in the Quick Framework. It helps developers track API requests, response times, and request details in a structured way.

📄 Automatically logs incoming requests with method, path, and status.

⏳ Captures the duration of each request.

📊 Helps identify slow or failing requests.

📜 Logs information in an easy-to-read format.


// Function signature
	q.Use(logger.New())
                        
routing.go