Skip to content
This repository was archived by the owner on Dec 8, 2020. It is now read-only.

2.5.0 - 25 July 2017

Choose a tag to compare

@binarylogic binarylogic released this 04 Aug 06:19
· 144 commits to master since this release

Added

  • Phoenix channel event support. Channel join and receive events are now structured into Timber.Events.ChannelJoinEvent and Timber.Events.ChannelReceiveEvent respectively. [#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