The message is similar to the BufferedReader construct.
Firstly, I donโt think you are doing something โwrongโ because you are saying that the code is working as expected and the message is โINFOโ and not โERRORโ or even โWARNINGโ.
Secondly, if you look at the BufferedReader constructor, you will see:
BufferedReader (Reader in, int size) Creates a new BufferedReader, providing buffer size characters.
http://developer.android.com/reference/java/io/BufferedReader.html
Use this constructor instead, and you should not see this message.
BTW, logcat filled with output, some lines are more relevant than others.
Use Log.d instead of System.out.println() . Regarding System.out : http://developer.android.com/guide/developing/tools/adb.html
View stdout and stderr
By default, the Android system sends stdout and stderr (System.out and System.err) to / dev / null. In the processes that run Dalvik VM, you can force the system to write a copy of the output to a log file. In this case, the system writes messages to the log using the log tags stdout and stderr, both with priority I.
To route output in this way, you stop the running emulator / device instance, and then use the setprop command shell to enable output redirection. Here's how you do it:
$ adb shell stop $ adb shell setprop log.redirect-stdio true $ adb shell start
The system saves this setting until you complete the emulator / device example. To use the default setting on the emulator / device For example, you can add an entry to /data/local.prop on the device.