This repository was archived by the owner on Dec 8, 2020. It is now read-only.
2.5.0 - 25 July 2017
Added
- Phoenix channel event support. Channel join and receive events are now structured into
Timber.Events.ChannelJoinEventandTimber.Events.ChannelReceiveEventrespectively. [#194] - The ability to only log Ecto SQL queries that exceed a specific time threshold. [#198]
Migration from 2.4.X
Please disable the default channel logging as Timber will capture these events for you:
# web.ex
def channel do
quote do
- use Phoenix.Channel
+ use Phoenix.Channel, log_join: false, log_handle_in: false