I want to do some extra stuff with my logs on debug build. Currently the app is using android.util.Log class (e.g. Log.w(TAG, "msg");directly, and they in turn appear in logcat.
Is there any way to capture stuff that is sent to logcat? Or is the only way to create a wrapper logger than executes my extra stuff and then calls to util.Log?