LOG_STREAM: fix the documentation to match the implementation.
Bug: https://issuetracker.google.com/214253547
Change-Id: I90811fbe971f948a43a176892bb4f801a7790a4e
diff --git a/include/android-base/logging.h b/include/android-base/logging.h
index 7ed0478..9b52391 100644
--- a/include/android-base/logging.h
+++ b/include/android-base/logging.h
@@ -212,10 +212,7 @@
// Get an ostream that can be used for logging at the given severity and to the default
// destination.
//
-// Notes:
-// 1) This will not check whether the severity is high enough. One should use WOULD_LOG to filter
-// usage manually.
-// 2) This does not save and restore errno.
+// Note that this does not save and restore errno.
#define LOG_STREAM(severity) \
::android::base::LogMessage(__FILE__, __LINE__, SEVERITY_LAMBDA(severity), _LOG_TAG_INTERNAL, \
-1) \