Giter Club home page Giter Club logo

Comments (5)

conficient avatar conficient commented on May 25, 2024 2

Had a quick look at this again. The new <ErrorBoundary> component in .NET 6 can be useful here. It normally is used to wrap components that might have issues on a page, but it's possible (but not advisable?) to wrap the whole App in one.

The component itself does not allow intercepting the error to log it, but you can create a subclass which can:

    public class GlobalErrorHandler : ErrorBoundary
    {
        protected override Task OnErrorAsync(Exception exception)
        {
            // log to ELMAH here
            ElmahExtensions.RaiseError(exception);
            return base.OnErrorAsync(exception);
        }
    }

You would then wrap the router in the App.razor in this:

<GlobalErrorHandler>
    <ChildContent>
        <Router AppAssembly="@typeof(App).Assembly">
            <Found Context="routeData">
                <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
                <FocusOnNavigate RouteData="@routeData" Selector="h1" />
            </Found>
            <NotFound>
                <PageTitle>Not found</PageTitle>
                <LayoutView Layout="@typeof(MainLayout)">
                    <p role="alert">Sorry, there's nothing at this address.</p>
                </LayoutView>
            </NotFound>
        </Router>
    </ChildContent>
    <ErrorContent>
        <p>Sorry an error occurred</p>
    </ErrorContent>
</GlobalErrorHandler>

Worth experimenting with but there may be issues with this approach I've not considered.

from elmahcore.

faina09 avatar faina09 commented on May 25, 2024

if the exception comes from a Controller the log is performed correctly:

    public class TestController : Controller
    {
        public IActionResult Index()
        {
            throw new InvalidOperationException("Test");
            //return View();
        }
   }

from elmahcore.

conficient avatar conficient commented on May 25, 2024

Is this a Blazor WASM or Blazor Server application? If Blazor Server then the error should be logged in Elmah, as it occurs on the server. If it's a Blazor WASM application Elmah won't see it as it happens on the client.

from elmahcore.

sebastianbk avatar sebastianbk commented on May 25, 2024

Is this a Blazor WASM or Blazor Server application? If Blazor Server then the error should be logged in Elmah, as it occurs on the server. If it's a Blazor WASM application Elmah won't see it as it happens on the client.

@conficient: Unfortunately, ElmahCore does not catch exceptions in Blazor Server components. I just tested this in my app. It only catches exceptions in my API controllers.

from elmahcore.

skcsknathan001 avatar skcsknathan001 commented on May 25, 2024

Elmah logs unhandled server errors. If you already do try/catch, it won't. However, you can log manually in your catch block like
ElmahExtensions.RaiseError(ex);

from elmahcore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.