How to pretty print conn content?

前端 未结 4 1455
天涯浪人
天涯浪人 2021-02-12 20:43

I tried the following

def index(conn, _params) do
    Logger.debug conn
     ......

But I get

protocol String.Chars not impleme         


        
4条回答
  •  清酒与你
    2021-02-12 21:19

    You can indeed use Kernel.inspect/2 to pretty-print the contents of the %Plug.Conn{} using:

    def index(conn, _params) do
      :logger.info inspect(conn, pretty: true)
      ....
    end
    

    Note that previous answers using Logger should mention that you need to require Logger before you use it, as in:

    require Logger
    
    def index(conn, _params) do
      Logger.info inspect(conn, pretty: true)
      ....
    end
    

提交回复
热议问题