Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better stacktrace readability #8

Open
JohannesDeml opened this issue Dec 3, 2019 · 1 comment
Open

Better stacktrace readability #8

JohannesDeml opened this issue Dec 3, 2019 · 1 comment

Comments

@JohannesDeml
Copy link
Member

When taking a look at the stacktrace of a dispatched signal, Only the base Signal Name appears in the trace, but not derived class. The derived class would be a lot more interesting, since it hold more precise information.

@JohannesDeml
Copy link
Member Author

It is possible to add an override for invoke to make the derived class visible in the stack trace

protected override void Invoke(int index)
{
	base.Invoke(index);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant