File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -206,26 +206,29 @@ impl BuilderConfig {
206
206
let res =
207
207
run_non_permissioned_standalone_builder_service ( hooks, senders, events_url)
208
208
. await ;
209
- tracing:: error!( ?res, "builder service exited" ) ;
209
+ tracing:: error!( ?res, "Reserve builder service exited" ) ;
210
210
if res. is_err ( ) {
211
- panic ! ( "Builder should restart." ) ;
211
+ panic ! ( "Reserve builder should restart." ) ;
212
212
}
213
213
} ) ;
214
+
215
+ tracing:: info!( "Reserve builder init finished" ) ;
214
216
} else {
215
217
let hooks = hooks:: EspressoFallbackHooks { solver_api_url } ;
216
218
217
219
async_spawn ( async move {
218
220
let res =
219
221
run_non_permissioned_standalone_builder_service ( hooks, senders, events_url)
220
222
. await ;
221
- tracing:: error!( ?res, "builder service exited" ) ;
223
+ tracing:: error!( ?res, "Fallback builder service exited" ) ;
222
224
if res. is_err ( ) {
223
- panic ! ( "Builder should restart." ) ;
225
+ panic ! ( "Fallback builder should restart." ) ;
224
226
}
225
227
} ) ;
228
+
229
+ tracing:: info!( "Fallback builder init finished" ) ;
226
230
}
227
231
228
- tracing:: info!( "Builder init finished" ) ;
229
232
Ok ( Self {
230
233
global_state,
231
234
hotshot_events_api_url,
You can’t perform that action at this time.
0 commit comments