Re: [android-developers] remove logs after market

2012-01-20 Thread Leno Britto
I don't get it, what logs? the ones you created for logcat? yeah, you can always remove or comment them, but why would you do that? the user won't see those unless he plugs the phone to the pc and if he does, so what? those messages are meant for troubleshooting rather then testing things out,

Re: [android-developers] remove logs after market

2012-01-20 Thread TreKing
On Tue, Jan 17, 2012 at 12:31 PM, Leno Britto len...@gmail.com wrote: but why would you do that? the user won't see those unless he plugs the phone to the pc and if he does, so what? those messages are meant for troubleshooting rather then testing things out, isn't that how you're you using

Re: [android-developers] remove logs after market

2012-01-20 Thread Kristopher Micinski
I agree with TreKing: it's very bad practice to leave your verbose logging in after development. It it still perhaps necessary to leave some logs in, but most of the chatty ones should be stripped from your app, as they'll be really annoying to other people, and just get in the way (and it's

Re: [android-developers] remove logs after market

2012-01-18 Thread unicus unicus
Create static method which will print log and before release of application just comment that method. -- More info, http://androidbasic-answer.blogspot.com/ On Tue, Jan 17, 2012 at 11:41 PM, TreKing treking...@gmail.com wrote: On Tue, Jan 17, 2012 at 6:29 AM, bo

[android-developers] remove logs after market

2012-01-17 Thread booooooooooooo
HI All i want to know how to remove logs before release in to the market please any body help on this Thanksregards vinod -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] remove logs after market

2012-01-17 Thread TreKing
On Tue, Jan 17, 2012 at 6:29 AM, bo yada...@gmail.com wrote: i want to know how to remove logs before release in to the market please any body help on this Comment them out. - TreKing