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
It would be great if it was possible to set these logging options for Phoenix.Channel
Right now, since use Phoenix.Channel is done inside Absinthe.Phoenix.Channel there is no way of setting them from what I can see.
use Phoenix.Channel
A walkaround that feels a bit hacky is to do something like this in the socket connect callback:
def connect(params, socket) do socket = %{ socket | private: Map.merge(socket.private, %{ log_join: false, log_handle_in: false }) } {:ok, socket} end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great if it was possible to set these logging options for Phoenix.Channel
Right now, since
use Phoenix.Channel
is done inside Absinthe.Phoenix.Channel there is no way of setting them from what I can see.A walkaround that feels a bit hacky is to do something like this in the socket connect callback:
The text was updated successfully, but these errors were encountered: