In Android, What is the difference between two namespaces,
- android.util.Log
- java.util.Logging
I am using android.util.Log. Now i am trying to save log to file, but file logging functions are not available in android.util.Log, how to do it ?
-- edit --
I already use Log.d(), Log.e() everywhere in my app, is there any way to redirect them to file, instead of changing code and adding another library ? In this answer microlog4android is recommended, but i'm not able to find any documentation or examples.
How CatLog is able to grab all logs and save it to a file? I want to do that in my application itself.