diff options
author | Loïc Hoguin <[email protected]> | 2012-04-01 17:58:04 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-04-01 17:58:04 +0200 |
commit | ba75e8b8ae5629ea24815f28da944a489bfa0a3e (patch) | |
tree | ce91177efa909690fb297b8e5403dabe5a120009 /src/cowboy_http_rest.erl | |
parent | 4fb2a6face6e7d6ff1dd34a02c3bd8b63d972624 (diff) | |
parent | 5a7040ee1ce1c8413fcf372fd58c2010fcca3795 (diff) | |
download | cowboy-ba75e8b8ae5629ea24815f28da944a489bfa0a3e.tar.gz cowboy-ba75e8b8ae5629ea24815f28da944a489bfa0a3e.tar.bz2 cowboy-ba75e8b8ae5629ea24815f28da944a489bfa0a3e.zip |
Merge branch 'log-proplist-req'
Diffstat (limited to 'src/cowboy_http_rest.erl')
-rw-r--r-- | src/cowboy_http_rest.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cowboy_http_rest.erl b/src/cowboy_http_rest.erl index c19d838..f9c856a 100644 --- a/src/cowboy_http_rest.erl +++ b/src/cowboy_http_rest.erl @@ -68,11 +68,12 @@ upgrade(_ListenerPid, Handler, Opts, Req) -> service_available(Req, #state{handler=Handler}) end catch Class:Reason -> + PLReq = lists:zip(record_info(fields, http_req), tl(tuple_to_list(Req))), error_logger:error_msg( "** Handler ~p terminating in rest_init/3~n" " for the reason ~p:~p~n** Options were ~p~n" "** Request was ~p~n** Stacktrace: ~p~n~n", - [Handler, Class, Reason, Opts, Req, erlang:get_stacktrace()]), + [Handler, Class, Reason, Opts, PLReq, erlang:get_stacktrace()]), {ok, _Req2} = cowboy_http_req:reply(500, Req), close end. |