I have read quite a few questions regarding "Removing Logs" but none answered my question. So, I have to ask here again.
What is the impact of Log.d()
or Log.v()
or Syso()
statements, on the application?
Let's say I have an application with 200 syso()
statements, or Logs, that I used to debug while creating the app. I didn't bother to remove them, because, (I am a newbie in android) and I thought, there is no way those statements gets printed or displayed. So, why take the pain of removing all those lines.
So how far my idea of not removing the logs effect the application? Will it increase the size of the application (cached data or something)?
@All, I think you don't are misunderstanding what I am asking for. I know Google advises us to remove the logs, and I am not questioning that. I want to know, what's the impact of those logs on my application, if i don't remove the logs