Skip to content
New issue

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

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

Already on GitHub? # to your account

Unify JS stack trace when exception is thrown #1443

Closed
vtrifonov opened this issue Aug 9, 2019 · 0 comments
Closed

Unify JS stack trace when exception is thrown #1443

vtrifonov opened this issue Aug 9, 2019 · 0 comments
Milestone

Comments

@vtrifonov
Copy link
Contributor

Is your feature request related to a problem? Please describe.
When an exception is thrown the JS stack trace is output in the following format:

System.err: StackTrace:
System.err: 	Frame: function:'viewModel.onTap', file:'file:///app/main-view-model.js:17:0
System.err: 	Frame: function:'push.../node_modules/tns-core-modules/data/observable/observable.js.Observable.notify', file:'file:///node_modules/tns-core-modules/data/observable/observable.js:107:0
System.err: 	Frame: function:'push.../node_modules/tns-core-modules/data/observable/observable.js.Observable._emit', file:'file:///node_modules/tns-core-modules/data/observable/observable.js:127:0
System.err: 	Frame: function:'ClickListenerImpl.onClick', file:'file:///node_modules/tns-core-modules/ui/button/button.js:29:0

Describe the solution you'd like
The stack trace should match the Java stack trace which is the same as the format when using console.trace
Here's the desired output:

System.err: StackTrace:
System.err: 	viewModel.onTap(file:///data/data/org.nativescript.test/files/app/main-view-model.js:17:0)
System.err: 	at push.../node_modules/tns-core-modules/data/observable/observable.js.Observable.notify(file:///node_modules/tns-core-modules/data/observable/observable.js:107:0)
System.err: 	at push.../node_modules/tns-core-modules/data/observable/observable.js.Observable._emit(file:///node_modules/tns-core-modules/data/observable/observable.js:127:0)
System.err: 	at ClickListenerImpl.onClick(file:///node_modules/tns-core-modules/ui/button/button.js:29:0)
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants