We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ use("*", new RequestLogger()); }
Prints any request that arrive to the server using the NCSA format:
127.0.0.1 - - [03/Oct/2016:22:08:35 -0300] "GET / HTTP/1.1" 200 2
The RequestLogger will be a filter you users can decide what path pattern should log:
RequestLogger
use("*", new RequestLogger()); // any request use("/prefix/**", new RequestLogger()); // everything under /prefix
The text was updated successfully, but these errors were encountered:
72a7bd0
No branches or pull requests
Prints any request that arrive to the server using the NCSA format:
The
RequestLogger
will be a filter you users can decide what path pattern should log:The text was updated successfully, but these errors were encountered: