-
-
Notifications
You must be signed in to change notification settings - Fork 59
Closed
Description
Make sure to check the existing issues in this repository
If there is no issue for your problem, tell us about it
console.dir()
is printed corectlly in Terminal but not in Chrome DevTools console
in Terminal the result is:
CONSOLE LOG file:///app/main-view-model.js:27:20: [object Object]
==== object dump start ====
name: John
age: 34
==== object dump end ====
in Chrome DevTools console:
[object Object]
Please, provide the following version numbers that your issue occurs with:
- CLI: 4.0.0-2018-04-05-11381
- Runtime(s):
"tns-ios": {
"version": "4.0.1-rc-2018-04-05-01"
}
Please, tell us how to recreate the issue in as much detail as possible.
- Add in some project console.dir()
e.g.
var obj = {name: "John", age: 34};
console.dir(obj);
- Run
tns debug ios
- Open the url in Chrome
- Go to Chrome DevTools console and execute the console.dir code