
de.yourinspiration.jexpresso.accesslog.AccessLogFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jexpresso-accesslog Show documentation
Show all versions of jexpresso-accesslog Show documentation
A middleware component for JExpresso web framework for access log messages
The newest version!
package de.yourinspiration.jexpresso.accesslog;
/**
* Format for the access log message.
*
* @author Marcel Härle
*
*/
public enum AccessLogFormat {
/**
* Tiny format: 12.10.14 2:33:21: GET /path
*/
TINY,
/**
* Small format: 12.10.14 2:33:21: GET /path 166.156.23.21 200
*/
SMALL,
/**
* Detailed format:
* 12.10.14 2:33:21: GET /path 194.123.22.34 200 OK 120ms
*/
DEVELOPER
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy