(OutputStream os, String text)
| 2130 | } |
| 2131 | |
| 2132 | private static int write(OutputStream os, String text) throws IOException { |
| 2133 | byte[] bytes = text.getBytes(); |
| 2134 | os.write(bytes); // TODO CASA system info |
| 2135 | return bytes.length; |
| 2136 | } |
| 2137 | |
| 2138 | static void writeCrashLog(Context context, Throwable ex) { |
| 2139 | File file = new File(context.getFilesDir(), CRASH_LOG_NAME); |
no test coverage detected