- Backwards incompatible changes
- Minimum required elixir version is now
~> 1.9
- Minimum required elixir version is now
-
Enhancements
- Protocol for
%r
is now logged as reported byPlug.Conn.get_http_protocol/1
- System environment configuration can set an optional default value to be used if the environment variable is unset
- Protocol for
-
Backwards incompatible changes
- Minimum required elixir version is now
~> 1.7
- Minimum required elixir version is now
-
Additional formatting directives
%{VARNAME}e
- Environment variable contents
-
Backwards incompatible changes
- All modules of the
DefaultFormatter
have been changed to not append to a passed message anymore but returniodata
. The public method has been renamed fromappend
toformat
to reflect this change.
- All modules of the
- Backwards incompatible changes
- Minimum required elixir version is now
~> 1.3
- Minimum required version of :timex raised to
~> 3.0
- Minimum required elixir version is now
- Backwards incompatible changes
- Minimum required elixir version is now
~> 1.2
- Minimum required erlang version is now
~> 18.0
- Minimum required elixir version is now
-
Enhancements
- Logfiles can be configured using system environment variables
- Logs are written in batches to the output file (configurable, default
100ms
)
-
Backwards incompatible changes
:local_time
is now internally stored as aTimex.DateTime
struct- Minimum required version of :timex raised to
~> 2.0
(#12)
-
Additional formatting directives
%P
- The process ID that serviced the request%{UNIT}T
- Time taken to serve the request in the given UNIT
-
Backwards incompatible changes
- Minimum required version of :timex raised to
~> 1.0
- Minimum required version of :timex raised to
-
Enhancements
- Application :tzdata (for recent :timex/:tzdata versions) is started automatically
-
Backwards incompatible changes
- Minimum required version of :timex raised to
~> 0.19
- Minimum required version of :tzdata raised to
=> 0.5.1
- Minimum required version of :timex raised to
- Backwards incompatible changes
- Minimum required version of :plug raised to
~> 1.0
- Minimum required version of :plug raised to
- Backwards incompatible changes
- Minimum required version of :plug raised to
~> 0.14
- Minimum required version of :plug raised to
-
Enhancements
- Allows passing custom formatters
- Errors when open logfiles are logged as errors using Logger
- Log writing is now handled by a GenEvent handler to avoid crashing
-
Additional formatting directives
%a
- Remote IP-address%D
- Time taken to serve the request (microseconds)%M
- Time taken to serve the request (milliseconds)%q
- Query string (prepended with "?" or empty string)%T
- Time taken to serve the request (full seconds)%V
- Server name (canonical)
-
Backwards incompatible changes
Plug.AccessLog.Formatter
has been renamed toPlug.AccessLog.DefaultFormatter
-
Enhancements
- Allows passing a dontlog-function to skip requests from logging
- Dependencies not used in production builds are marked as optional
-
Additional formatting directives
%{VARNAME}C
- Cookie sent by the client%m
- Request method%{VARNAME}o
- Header line sent by the server
- Bug fixes
- Properly accesses headers using lowercase (@c-rack)
-
Enhancements
- Allows logging to functions instead of files
- Properly ignores unopenable logfiles (e.g. "..")
- Recreates logfile if necessary (e.g. after moved by logrotate)
-
Additional formatting directives
%%
- Percentage sign%B
- Size of response in bytes. Outputs "0" when no bytes are sent.
- Bug fixes
- Properly handles charlist responses (@chvanikoff)
- Reopens logfile IO device if pid is not alive anymore (@chvanikoff)
- Enhancements
- Provides "Agent Log Format" alias
- Provides "Combined Log Format" alias
- Provides "Combined Log Format with VHost" alias
- Provides "Referer Log Format" alias
- Enhancements
- Logs username from basic authentication
- Provides access to vhost (domain) for logging
- Raises plug version requirement to
~> 0.10
- Enhancements
- Supports full CLF
- Initial Release