Try writing System.out.println anywhere in your project, select this text, and then press ctrl + alt + g (sorry, I don’t know exactly what this search is), and it will give you all the occurrences of this line in all your projects (workplaces). I am 100% sure that this means something in the search> java - you can look more closely at what exactly. Other than that you can have conditional execution for logs - i.e.
if(Consts.DEBUG){ Log("something"); }
source share