File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ def closed(error = nil)
32
32
33
33
# Used by the client to send requests to the remote server.
34
34
def call ( request , task : Task . current )
35
- Console . debug ( self ) { "#{ request . method } #{ request . path } #{ request . headers . inspect } " }
36
-
37
35
# Mark the start of the trailers:
38
36
trailer = request . headers . trailer!
39
37
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def fail_request(status)
34
34
write_body ( @version , nil )
35
35
rescue => error
36
36
# At this point, there is very little we can do to recover:
37
- Console :: Event :: Failure . for ( error ) . emit ( self , "Failed to write failure response!" , severity : :debug )
37
+ Console . debug ( self , "Failed to write failure response!" , error )
38
38
end
39
39
40
40
def next_request
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def process_headers(frame)
65
65
@input . close_write
66
66
end
67
67
rescue ::Protocol ::HTTP2 ::HeaderError => error
68
- Console . debug ( self , "Error while processing headers!" , error : error )
68
+ Console . debug ( self , "Error while processing headers!" , error )
69
69
70
70
send_reset_stream ( error . code )
71
71
end
You can’t perform that action at this time.
0 commit comments