Chromium Code Reviews| Index: runtime/bin/log_android.cc |
| diff --git a/runtime/bin/log_android.cc b/runtime/bin/log_android.cc |
| index 6e5a6213f24ab707a5d2feffdcfa2ed2c9072d32..e562143ab1a2b9fb911859de3c17e303b6a2f0c6 100644 |
| --- a/runtime/bin/log_android.cc |
| +++ b/runtime/bin/log_android.cc |
| @@ -17,10 +17,12 @@ namespace bin { |
| // it when we see a '\n'. |
| void Log::VPrint(const char* format, va_list args) { |
|
Bill Hesse
2016/04/27 12:22:31
Add a comment explaining this
kustermann
2016/04/27 13:25:08
Done.
|
| + vprintf(format, args); |
| __android_log_vprint(ANDROID_LOG_INFO, "Dart", format, args); |
| } |
| void Log::VPrintErr(const char* format, va_list args) { |
| + vfprintf(stderr, format, args); |
| __android_log_vprint(ANDROID_LOG_ERROR, "Dart", format, args); |
| } |