@@ -3486,6 +3486,8 @@ void RegisterScriptBuffer(DkmProcess process, LuaLocalProcessData processData, u
3486
3486
{
3487
3487
if ( HasPendingBreakpoint ( process , processData , resolvedPath ) )
3488
3488
{
3489
+ log . Debug ( $ "Reloading script { scriptName } pending breakpoints") ;
3490
+
3489
3491
var message = DkmCustomMessage . Create ( process . Connection , process , Guid . Empty , MessageToVsService . reloadBreakpoints , Encoding . UTF8 . GetBytes ( resolvedPath ) , null ) ;
3490
3492
3491
3493
message . SendToVsService ( Guids . luaVsPackageComponentGuid , true ) ;
@@ -3707,6 +3709,8 @@ void TryRegisterLuaStateCreation(DkmProcess process, LuaLocalProcessData process
3707
3709
3708
3710
if ( ! knownState )
3709
3711
{
3712
+ log . Debug ( $ "TryRegisterLuaStateCreation found state that wasn't registered") ;
3713
+
3710
3714
RegisterLuaStateCreation ( process , processData , inspectionSession , thread , frame , stateAddress ) ;
3711
3715
}
3712
3716
}
@@ -3892,6 +3896,8 @@ DkmCustomMessage IDkmCustomMessageCallbackReceiver.SendHigher(DkmCustomMessage c
3892
3896
{
3893
3897
if ( HasPendingBreakpoint ( process , processData , resolvedPath ) )
3894
3898
{
3899
+ log . Debug ( $ "Reloading script { scriptName } pending breakpoints") ;
3900
+
3895
3901
var message = DkmCustomMessage . Create ( process . Connection , process , Guid . Empty , MessageToVsService . reloadBreakpoints , Encoding . UTF8 . GetBytes ( resolvedPath ) , null ) ;
3896
3902
3897
3903
message . SendToVsService ( Guids . luaVsPackageComponentGuid , true ) ;
0 commit comments