I have to replace the Android standard logging system with a custom one. I deleted import android.util.Log; in all the *.java files, and now I have got to delete all the calls, such as Log.i(MY_TAG, "Something"), manually. The methods of my logging system have different signatures; so, I cannot simply run “Organize imports” to import my logging class and leave calls of the standard Log class.
I have to replace the Android standard logging system with a custom one. I
Share
Do a file search on your workspace, looking for the import log class (“import …Log”), check the result. Do it again but press the replace button and leave the field empty.
finally change your calls to log.