You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2024. It is now read-only.
Could be helpful to have a way to display HTTP requests info.
In the CLI program we could add a command line parameter to the server command, say --tail which would display the HTTP requests being handled by the server.
In the core package, we currently do not have a log middleware. We'd need one and use the logger to ourput nice output, but only if we used the --tail option.
This means that in the config we would need to add a new option to indicate if we want to display the server log or not.
The log middleware would be added to all middleware chains only if that config flag is true.
What I mean by middleware chains can be found in server.go:117: