File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1026,7 +1026,7 @@ impl<A: Actor> Instance<A> {
1026
1026
/// Initialize and run the actor until it fails or is stopped.
1027
1027
async fn run ( & mut self , actor : & mut A ) -> Result < ( ) , ActorError > {
1028
1028
hyperactor_telemetry:: declare_static_counter!( MESSAGES_RECEIVED , "actor.messages_received" ) ;
1029
- tracing:: debug!( "entering actor loop" ) ;
1029
+ tracing:: debug!( "entering actor loop: {}" , self . self_id ( ) ) ;
1030
1030
1031
1031
self . change_status ( ActorStatus :: Initializing ) ;
1032
1032
actor
@@ -1087,7 +1087,7 @@ impl<A: Actor> Instance<A> {
1087
1087
}
1088
1088
tracing:: debug!( "drained {} messages" , n) ;
1089
1089
}
1090
- tracing:: debug!( "exited actor loop" ) ;
1090
+ tracing:: debug!( "exited actor loop: {}" , self . self_id ( ) ) ;
1091
1091
self . change_status ( ActorStatus :: Stopped ) ;
1092
1092
Ok ( ( ) )
1093
1093
}
You can’t perform that action at this time.
0 commit comments