Merge "Remove extraneous logging." into jb-mr2-dev

This commit is contained in:
Tim Murray
2013-05-11 00:05:02 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@ -1100,7 +1100,7 @@ public class RenderScript {
} catch(InterruptedException e) {
}
}
Log.d(LOG_TAG, "MessageThread exiting.");
//Log.d(LOG_TAG, "MessageThread exiting.");
}
}

View File

@ -106,7 +106,7 @@ public class ScriptC extends Script {
mCachePath = f.getAbsolutePath();
f.mkdirs();
}
Log.v(TAG, "Create script for resource = " + resName);
// Log.v(TAG, "Create script for resource = " + resName);
return rs.nScriptCCreate(resName, mCachePath, pgm, pgmLength);
}
}