Skip to content
#

error-reporting

Here are 273 public repositories matching this topic...

TheNeikos
TheNeikos commented Apr 20, 2022

Currently IntoDiagnostic wraps the Error that it is called on with a DiagnosticError.

https://github.com/zkat/miette/blob/e6f5cacfa65cfe26255a5686ceb610b4a211931b/src/eyreish/into_diagnostic.rs#L22-L26

This means that any further inspection using is or downcast{,_ref,_mut} will fail to reach the inner type and only DiagnosticError can be reached. Since it is an implementation detai

enhancement help wanted good first issue

🔩 PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/

  • Updated Jul 2, 2021
  • PowerShell
rolandoldengarm
rolandoldengarm commented Oct 5, 2020

When creating exceptions with breadcrumbs in 2 tests, the second test will have the breadcrumbs from the first test.

describe('debug', () => {
    beforeEach(() => {
      testkit.reset();
    });
    it('should log a message 1', () => {
      Sentry.addBreadCrumb({message: 'messageText'});
      Sentry.captureException(new Error('test 1'));

      expect(testkit.reports()).toHaveLen

Improve this page

Add a description, image, and links to the error-reporting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the error-reporting topic, visit your repo's landing page and select "manage topics."

Learn more