File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,11 @@ let response_of_fd_exn fd =
177
177
(Astring.String. cuts ~sep: " \n " buf)
178
178
)
179
179
180
+ (* Use a different logging brand, the one used by {D} is ignore in the default
181
+ configuration. This allows to have visibility of an issue that interrupts
182
+ storage migrations. *)
183
+ module L = Debug. Make (struct let name = __MODULE__ end )
184
+
180
185
(* * [response_of_fd fd] returns an optional Http.Response.t record *)
181
186
let response_of_fd ?(use_fastpath = false ) fd =
182
187
try
@@ -191,7 +196,7 @@ let response_of_fd ?(use_fastpath = false) fd =
191
196
Backtrace. is_important e ;
192
197
let bt = Backtrace. get e in
193
198
Debug. log_backtrace e bt ;
194
- D . debug " %s: returning no response because of the exception: %s"
199
+ L . debug " %s: returning no response because of the exception: %s"
195
200
__FUNCTION__ (Printexc. to_string e) ;
196
201
None
197
202
You can’t perform that action at this time.
0 commit comments