mirror of https://github.com/BOINC/boinc.git
Remove extra logging from getStatus
This commit is contained in:
parent
a597c2d24f
commit
69ab6f570c
|
@ -61,11 +61,12 @@ public class CcStateParser extends BaseParser {
|
||||||
public static CcState parse(String rpcResult) {
|
public static CcState parse(String rpcResult) {
|
||||||
try {
|
try {
|
||||||
String tmp = rpcResult;
|
String tmp = rpcResult;
|
||||||
while(tmp.length() > 4000) {
|
//Log d has a limit on string size to print, loop to print it all...
|
||||||
Log.d(TAG, "WCG: " + tmp.substring(0, 4000));
|
// while(tmp.length() > 4000) {
|
||||||
tmp = tmp.substring(4000);
|
// Log.d(TAG, "WCG: " + tmp.substring(0, 4000));
|
||||||
}
|
// tmp = tmp.substring(4000);
|
||||||
Log.d(TAG, "WCG: " + tmp);
|
// }
|
||||||
|
// Log.d(TAG, "WCG: " + tmp);
|
||||||
|
|
||||||
CcStateParser parser = new CcStateParser();
|
CcStateParser parser = new CcStateParser();
|
||||||
Xml.parse(rpcResult, parser);
|
Xml.parse(rpcResult, parser);
|
||||||
|
|
Loading…
Reference in New Issue