@@ -3486,6 +3486,8 @@ void RegisterScriptBuffer(DkmProcess process, LuaLocalProcessData processData, u
34863486 {
34873487 if ( HasPendingBreakpoint ( process , processData , resolvedPath ) )
34883488 {
3489+ log . Debug ( $ "Reloading script { scriptName } pending breakpoints") ;
3490+
34893491 var message = DkmCustomMessage . Create ( process . Connection , process , Guid . Empty , MessageToVsService . reloadBreakpoints , Encoding . UTF8 . GetBytes ( resolvedPath ) , null ) ;
34903492
34913493 message . SendToVsService ( Guids . luaVsPackageComponentGuid , true ) ;
@@ -3707,6 +3709,8 @@ void TryRegisterLuaStateCreation(DkmProcess process, LuaLocalProcessData process
37073709
37083710 if ( ! knownState )
37093711 {
3712+ log . Debug ( $ "TryRegisterLuaStateCreation found state that wasn't registered") ;
3713+
37103714 RegisterLuaStateCreation ( process , processData , inspectionSession , thread , frame , stateAddress ) ;
37113715 }
37123716 }
@@ -3892,6 +3896,8 @@ DkmCustomMessage IDkmCustomMessageCallbackReceiver.SendHigher(DkmCustomMessage c
38923896 {
38933897 if ( HasPendingBreakpoint ( process , processData , resolvedPath ) )
38943898 {
3899+ log . Debug ( $ "Reloading script { scriptName } pending breakpoints") ;
3900+
38953901 var message = DkmCustomMessage . Create ( process . Connection , process , Guid . Empty , MessageToVsService . reloadBreakpoints , Encoding . UTF8 . GetBytes ( resolvedPath ) , null ) ;
38963902
38973903 message . SendToVsService ( Guids . luaVsPackageComponentGuid , true ) ;
0 commit comments