I tried the following
def index(conn, _params) do Logger.debug conn ......
But I get
protocol String.Chars not impleme
Use inspect conn, pretty: true
inspect conn, pretty: true
... or:
inspect conn, pretty: true, limit: 30000
... since Conn structures are pretty big.
Conn