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

Show descriptive errors when view event fails (actual error not showing up) #670

Open
x00 opened this issue Feb 15, 2017 · 0 comments
Open
Labels

Comments

@x00
Copy link

x00 commented Feb 15, 2017

Testing on android 6.01 (pure) Moto X Play

[ro.build.version.sdk]: [23]

say you have in your template

<Label text="test event" (tap)="testEvent()"></Label>

and in your code the method

private testEvent() : void {
    throw Error("This error will not show up");
}

when the click on it the error that will show up will be

An uncaught Exception occurred on "main" thread.
com.tns.NativeScriptException: 
Calling js method onTouch failed

which is not all that helpful

the work around

private testEvent() : void {
    try {
        throw Error("This error will show up");
    } catch(e) {
        console.log((<Error>e).message);
    }
}
@NickIliev NickIliev changed the title Lack of descriptive errors when view event fails (actual error not showing up) Show descriptive errors when view event fails (actual error not showing up) Feb 20, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants