Reflex icon indicating copy to clipboard operation
Reflex copied to clipboard

Container.Scope doesn't log exceptions

Open Antoshidza opened this issue 1 month ago • 0 comments

Describe the bug I've spent a lot of time finding magic bug because Scope function prints no logs about inner exceptions

To Reproduce Do this

container.Scope(builder => 
{
    UnityEngine.Debug.Log("Log");
    throw new Exception("Exception");
})

You should see "Log" in console but no "Exception".

Expected behavior We should see both "Log" and "Exception" in console.

Desktop (please complete the following information):

  • OS: Windows
  • Version 13.0.3

Antoshidza avatar Nov 19 '25 12:11 Antoshidza