You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've seen the same but it seems to be a problem with logging, try Ti.API.debug('index.js ran!', Math.random());, from what I've seen the repeated log statements share the same random number which suggest it's the logger that is the problem.
Steps to reproduce:
Gulpfile.js
<sdk-version>3.5.0.GA</sdk-version>
to<sdk-version>3.5.1.GA</sdk-version>
intiapp.xml
When I'm running with
grunt dev -p ios
and press the login button in the simulator, I get the following printout in the terminal:Notice that I get it twice.
And if I add
Ti.API.debug('index.js runned!');
as line 1 insrc/controllers/index.js
I get that printout twice as well. It looks like this:It looks like a lot of things is required twice. See the full log: https://gist.github.com/emiloberg/76619f49f6ff64c97d74#file-gistfile1-sh-L244-L273
Any idea why this is?
The text was updated successfully, but these errors were encountered: