@@ -98,7 +98,9 @@ impl Activity for Camera {
9898 }
9999
100100 #[ instrument( name = "Camera shutdown" ) ]
101- fn shutdown ( & mut self ) { }
101+ fn shutdown ( & mut self ) {
102+ debug ! ( "Shutting down Camera activity {}" , self . activity_id) ;
103+ }
102104}
103105
104106/// Radar activity
@@ -161,7 +163,9 @@ impl Activity for Radar {
161163 }
162164
163165 #[ instrument( name = "Radar shutdown" ) ]
164- fn shutdown ( & mut self ) { }
166+ fn shutdown ( & mut self ) {
167+ debug ! ( "Shutting down Radar activity {}" , self . activity_id) ;
168+ }
165169}
166170
167171/// Neural network activity
@@ -251,7 +255,9 @@ impl Activity for NeuralNet {
251255 }
252256
253257 #[ instrument( name = "NeuralNet shutdown" ) ]
254- fn shutdown ( & mut self ) { }
258+ fn shutdown ( & mut self ) {
259+ debug ! ( "Shutting down NeuralNet activity {}" , self . activity_id) ;
260+ }
255261}
256262
257263/// Emergency braking activity
@@ -328,7 +334,9 @@ impl Activity for EmergencyBraking {
328334 }
329335
330336 #[ instrument( name = "EmergencyBraking shutdown" ) ]
331- fn shutdown ( & mut self ) { }
337+ fn shutdown ( & mut self ) {
338+ debug ! ( "Shutting down EmergencyBraking activity {}" , self . activity_id) ;
339+ }
332340}
333341
334342/// Brake controller activity
@@ -378,7 +386,9 @@ impl Activity for BrakeController {
378386 }
379387
380388 #[ instrument( name = "BrakeController shutdown" ) ]
381- fn shutdown ( & mut self ) { }
389+ fn shutdown ( & mut self ) {
390+ debug ! ( "Shutting down BrakeController activity {}" , self . activity_id) ;
391+ }
382392}
383393
384394/// Environment renderer activity
@@ -422,7 +432,9 @@ impl Activity for EnvironmentRenderer {
422432 }
423433
424434 #[ instrument( name = "EnvironmentRenderer shutdown" ) ]
425- fn shutdown ( & mut self ) { }
435+ fn shutdown ( & mut self ) {
436+ debug ! ( "Shutting down EnvironmentRenderer activity {}" , self . activity_id) ;
437+ }
426438}
427439
428440/// Steering controller activity
@@ -470,7 +482,9 @@ impl Activity for SteeringController {
470482 }
471483
472484 #[ instrument( name = "SteeringController shutdown" ) ]
473- fn shutdown ( & mut self ) { }
485+ fn shutdown ( & mut self ) {
486+ debug ! ( "Shutting down SteeringController activity {}" , self . activity_id) ;
487+ }
474488}
475489
476490/// Create an activity input.
0 commit comments