delight-im / Android-DDP

[UNMAINTAINED] Meteor's Distributed Data Protocol (DDP) for clients on Android
Apache License 2.0
274 stars 54 forks source link

¿What is the function of Meteor.setLoggingEnabled(true);? #55

Closed cristianhoyos66-zz closed 8 years ago

cristianhoyos66-zz commented 8 years ago

I need to know what is the real work for this line

Meteor.setLoggingEnabled(true);

Thanks

Rokeder commented 8 years ago

It shows you all the operations(in the Log of Android Studio) that appears in interaction of server and your application.

ocram commented 8 years ago

Exactly. If you have some problem with your client-server communication that you don't understand, you may use this setting to debug things. But otherwise, you won't need it. Anyway, only use it during development.

cristianhoyos66-zz commented 8 years ago

Ok guys, thank you :)