Skip to content

request parameter in listeners.after.stackTrace callback returns nil #699

@PhantomCloak

Description

@PhantomCloak

Debug adapter definition and debug configuration

Installed the adapter via Packer
Configured it as described in Wiki for Unity

dap.adapters.unity = {
  type = 'executable',
  command = '<path-to-mono-directory>/Commands/mono',
  args = {'<path-to-unity-debug-directory>/unity.unity-debug-x.x.x/bin/UnityDebug.exe'}
}

dap.configurations.cs = {
  {
  type = 'unity',
  request = 'attach',
  name = 'Unity Editor',
  }
}

Debug adapter version

3c3e0a8

Steps to Reproduce

1 - Open new unity project
2 - Add script to scene
3 - Put breakpoint in the script
4 - Launch client and wait for the attach
5 - Breakpoint hits
6 - in dap.listeners.after.stackTrace return null for parameter request for all threads except main thread

Expected Result

first I encounter this issue on rcarriga/nvim-dap-ui#140, vscode-unity-debug adapter doesn't return any value for other threads except main this leads to nvim-dap to pass nil to callback thus anything uses that callback had to implement null check on request parameter.

Actual Result


[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1010,
        line = 30,
        name = "OnlineService.Core.BackendPipe.RegisterPlayer",
        presentationHint = "normal",
        source = {
          name = "BackendPipe.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/CoreServices/BackendPipe.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1011,
        line = 196,
        name = "LoadingScreenManager_Opening.btnContinueClick",
        presentationHint = "normal",
        source = {
          name = "LoadingScreenManager_Opening.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/Loading/LoadingScreenManager_Opening.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1012,
        line = 180,
        name = "UnityEngine.Events.InvokableCall.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1013,
        line = 58,
        name = "UnityEngine.Events.UnityEvent.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent_0.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1014,
        line = 68,
        name = "UnityEngine.UI.Button.Press",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1015,
        line = 110,
        name = "UnityEngine.UI.Button.OnPointerClick",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1016,
        line = 50,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1017,
        line = 262,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute<UnityEngine.EventSystems.IPointerClickHandler>",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1018,
        line = 187,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ReleaseMouse",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1019,
        line = 642,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ProcessMousePress",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      } },
    totalFrames = 14
  },
  command = "stackTrace",
  request_seq = 6,
  seq = 629,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1010,
        line = 30,
        name = "OnlineService.Core.BackendPipe.RegisterPlayer",
        presentationHint = "normal",
        source = {
          name = "BackendPipe.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/CoreServices/BackendPipe.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1011,
        line = 196,
        name = "LoadingScreenManager_Opening.btnContinueClick",
        presentationHint = "normal",
        source = {
          name = "LoadingScreenManager_Opening.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/Loading/LoadingScreenManager_Opening.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1012,
        line = 180,
        name = "UnityEngine.Events.InvokableCall.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1013,
        line = 58,
        name = "UnityEngine.Events.UnityEvent.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent_0.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1014,
        line = 68,
        name = "UnityEngine.UI.Button.Press",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1015,
        line = 110,
        name = "UnityEngine.UI.Button.OnPointerClick",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1016,
        line = 50,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1017,
        line = 262,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute<UnityEngine.EventSystems.IPointerClickHandler>",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1018,
        line = 187,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ReleaseMouse",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1019,
        line = 642,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ProcessMousePress",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      } },
    totalFrames = 14
  },
  command = "stackTrace",
  request_seq = 6,
  seq = 629,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1020,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1021,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1022,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1023,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1024,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1025,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1026,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1027,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1028,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1029,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 7,
  seq = 630,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1020,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1021,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1022,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1023,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1024,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1025,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1026,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1027,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1028,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1029,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 7,
  seq = 630,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1020,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1021,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1022,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1023,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1024,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1025,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1026,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1027,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1028,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1029,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 7,
  seq = 630,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 8,
  seq = 631,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 8,
  seq = 631,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 8,
  seq = 631,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 9,
  seq = 632,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 9,
  seq = 632,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 9,
  seq = 632,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 10,
  seq = 633,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 10,
  seq = 633,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 10,
  seq = 633,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 11,
  seq = 634,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 11,
  seq = 634,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 11,
  seq = 634,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 12,
  seq = 635,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 12,
  seq = 635,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 12,
  seq = 635,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 13,
  seq = 636,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 13,
  seq = 636,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 13,
  seq = 636,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1030,
        line = 30,
        name = "OnlineService.Core.BackendPipe.RegisterPlayer",
        presentationHint = "normal",
        source = {
          name = "BackendPipe.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/CoreServices/BackendPipe.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1031,
        line = 196,
        name = "LoadingScreenManager_Opening.btnContinueClick",
        presentationHint = "normal",
        source = {
          name = "LoadingScreenManager_Opening.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/Loading/LoadingScreenManager_Opening.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1032,
        line = 180,
        name = "UnityEngine.Events.InvokableCall.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1033,
        line = 58,
        name = "UnityEngine.Events.UnityEvent.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent_0.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1034,
        line = 68,
        name = "UnityEngine.UI.Button.Press",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1035,
        line = 110,
        name = "UnityEngine.UI.Button.OnPointerClick",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1036,
        line = 50,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1037,
        line = 262,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute<UnityEngine.EventSystems.IPointerClickHandler>",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1038,
        line = 187,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ReleaseMouse",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1039,
        line = 642,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ProcessMousePress",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      } },
    totalFrames = 14
  },
  command = "stackTrace",
  request_seq = 14,
  seq = 637,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1030,
        line = 30,
        name = "OnlineService.Core.BackendPipe.RegisterPlayer",
        presentationHint = "normal",
        source = {
          name = "BackendPipe.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/CoreServices/BackendPipe.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1031,
        line = 196,
        name = "LoadingScreenManager_Opening.btnContinueClick",
        presentationHint = "normal",
        source = {
          name = "LoadingScreenManager_Opening.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/Loading/LoadingScreenManager_Opening.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1032,
        line = 180,
        name = "UnityEngine.Events.InvokableCall.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1033,
        line = 58,
        name = "UnityEngine.Events.UnityEvent.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent_0.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1034,
        line = 68,
        name = "UnityEngine.UI.Button.Press",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1035,
        line = 110,
        name = "UnityEngine.UI.Button.OnPointerClick",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1036,
        line = 50,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1037,
        line = 262,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute<UnityEngine.EventSystems.IPointerClickHandler>",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1038,
        line = 187,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ReleaseMouse",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1039,
        line = 642,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ProcessMousePress",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      } },
    totalFrames = 14
  },
  command = "stackTrace",
  request_seq = 14,
  seq = 637,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1030,
        line = 30,
        name = "OnlineService.Core.BackendPipe.RegisterPlayer",
        presentationHint = "normal",
        source = {
          name = "BackendPipe.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/CoreServices/BackendPipe.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1031,
        line = 196,
        name = "LoadingScreenManager_Opening.btnContinueClick",
        presentationHint = "normal",
        source = {
          name = "LoadingScreenManager_Opening.cs",
          path = "/Users/x/Workspace/x/x/Assets/01.Scripts/Loading/LoadingScreenManager_Opening.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1032,
        line = 180,
        name = "UnityEngine.Events.InvokableCall.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1033,
        line = 58,
        name = "UnityEngine.Events.UnityEvent.Invoke",
        presentationHint = "subtle",
        source = {
          name = "UnityEvent_0.cs",
          presentationHint = "deemphasize",
          sourceReference = 1000
        }
      }, {
        column = 0,
        id = 1034,
        line = 68,
        name = "UnityEngine.UI.Button.Press",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1035,
        line = 110,
        name = "UnityEngine.UI.Button.OnPointerClick",
        presentationHint = "normal",
        source = {
          name = "Button.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/UI/Core/Button.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1036,
        line = 50,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1037,
        line = 262,
        name = "UnityEngine.EventSystems.ExecuteEvents.Execute<UnityEngine.EventSystems.IPointerClickHandler>",
        presentationHint = "normal",
        source = {
          name = "ExecuteEvents.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/ExecuteEvents.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1038,
        line = 187,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ReleaseMouse",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      }, {
        column = 0,
        id = 1039,
        line = 642,
        name = "UnityEngine.EventSystems.StandaloneInputModule.ProcessMousePress",
        presentationHint = "normal",
        source = {
          name = "StandaloneInputModule.cs",
          path = "/Users/x/Workspace/x/x/Library/PackageCache/[email protected]/Runtime/EventSystem/InputModules/StandaloneInputModule.cs",
          presentationHint = "normal",
          sourceReference = 0
        }
      } },
    totalFrames = 14
  },
  command = "stackTrace",
  request_seq = 14,
  seq = 637,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1040,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1041,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1042,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1043,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1044,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1045,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1046,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1047,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1048,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1049,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 15,
  seq = 638,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1040,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1041,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1042,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1043,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1044,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1045,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1046,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1047,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1048,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1049,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 15,
  seq = 638,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = { {
        column = 0,
        id = 1040,
        line = 0,
        name = "System.Threading.Monitor.Monitor_wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1041,
        line = 0,
        name = "System.Threading.Monitor.ObjWait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1042,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1043,
        line = 0,
        name = "System.Threading.Monitor.Wait",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1044,
        line = 0,
        name = "PlasticPipe.Client.ClientConnectionPool.a",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1045,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart_Context",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1046,
        line = 0,
        name = "System.Threading.ExecutionContext.RunInternal",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1047,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1048,
        line = 0,
        name = "System.Threading.ExecutionContext.Run",
        presentationHint = "subtle"
      }, {
        column = 0,
        id = 1049,
        line = 0,
        name = "System.Threading.ThreadHelper.ThreadStart",
        presentationHint = "subtle"
      } },
    totalFrames = 10
  },
  command = "stackTrace",
  request_seq = 15,
  seq = 638,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 16,
  seq = 639,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 16,
  seq = 639,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 16,
  seq = 639,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 17,
  seq = 640,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 17,
  seq = 640,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 17,
  seq = 640,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 18,
  seq = 641,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 18,
  seq = 641,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 18,
  seq = 641,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 19,
  seq = 642,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 19,
  seq = 642,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 19,
  seq = 642,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 20,
  seq = 643,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 20,
  seq = 643,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 20,
  seq = 643,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 21,
  seq = 644,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 21,
  seq = 644,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    stackFrames = {},
    totalFrames = 0
  },
  command = "stackTrace",
  request_seq = 21,
  seq = 644,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    scopes = { {
        expensive = false,
        name = "Local",
        variablesReference = 1000
      } }
  },
  command = "scopes",
  request_seq = 22,
  seq = 645,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    scopes = { {
        expensive = false,
        name = "Local",
        variablesReference = 1000
      } }
  },
  command = "scopes",
  request_seq = 22,
  seq = 645,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:48Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    scopes = { {
        expensive = false,
        name = "Local",
        variablesReference = 1000
      } }
  },
  command = "scopes",
  request_seq = 22,
  seq = 645,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:1332 ]	"request"	{
  arguments = {
    variablesReference = 1000
  },
  command = "variables",
  seq = 23,
  type = "request"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:1332 ]	"request"	{
  arguments = {
    variablesReference = 1000
  },
  command = "variables",
  seq = 24,
  type = "request"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:1332 ]	"request"	{
  arguments = {
    variablesReference = 1000
  },
  command = "variables",
  seq = 25,
  type = "request"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1001
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 23,
  seq = 646,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1001
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 23,
  seq = 646,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1001
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 23,
  seq = 646,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1002
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 24,
  seq = 647,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1002
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 24,
  seq = 647,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1002
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 24,
  seq = 647,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1003
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 25,
  seq = 648,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1003
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 25,
  seq = 648,
  success = true,
  type = "response"
}
[ WARN ] 2022-09-25T23:34:53Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:852 ]	"No callback for "	{
  body = {
    variables = { {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "onRegisterCallback",
        type = "System.Action<bool,string>",
        value = "System.Action<bool,string>",
        variablesReference = 1003
      }, {
        name = "userName",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "displayName",
        type = "string",
        value = '"x"',
        variablesReference = 0
      }, {
        name = "password",
        type = "string",
        value = '"9FA1D035-68D8-5788"',
        variablesReference = 0
      }, {
        name = "handle",
        type = "OnlineService.Core.ThreadContextManager.SyncGenericCallback",
        value = "(null)",
        variablesReference = 0
      } }
  },
  command = "variables",
  request_seq = 25,
  seq = 648,
  success = true,
  type = "response"
}
[ DEBUG ] 2022-09-25T23:35:06Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    category = "stdout",
    output = "Thread finished: <Thread Pool> #4\n"
  },
  event = "output",
  seq = 649,
  type = "event"
}
[ DEBUG ] 2022-09-25T23:35:06Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    reason = "exited",
    threadId = 4
  },
  event = "thread",
  seq = 650,
  type = "event"
}
[ DEBUG ] 2022-09-25T23:35:37Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    category = "stdout",
    output = "Thread finished: <Thread Pool> #3\n"
  },
  event = "output",
  seq = 651,
  type = "event"
}
[ DEBUG ] 2022-09-25T23:35:37Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    reason = "exited",
    threadId = 3
  },
  event = "thread",
  seq = 652,
  type = "event"
}
[ DEBUG ] 2022-09-25T23:35:52Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    category = "stdout",
    output = "Thread finished: <Thread Pool> #5\n"
  },
  event = "output",
  seq = 653,
  type = "event"
}
[ DEBUG ] 2022-09-25T23:35:52Z+0300 ] ...nvim/site/pack/packer/start/nvim-dap/lua/dap/session.lua:844 ]	{
  body = {
    reason = "exited",
    threadId = 5
  },
  event = "thread",
  seq = 654,
  type = "event"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions