How to print both to Log.e/d/etc. and to System.out/err/etc.? I have some code that I test on desktop and sometimes I use it on Android and I want to see logs there too.
How to print both to Log.e/d/etc. and to System.out/err/etc.? I have some code that
Share
If you simply use
System.out.println(tag+": "+msg);, it should output to your console when you run the code in a regular Java app, and print to LogCat with the tagSystem.outwhen running from within Android.