From c1fd6fc3163a5f6866970f722f30082fe0228529 Mon Sep 17 00:00:00 2001 From: Robert Shih Date: Tue, 16 Mar 2021 02:37:04 -0700 Subject: [PATCH] drm@1.4: ANAPIC doc review follow-up Bug: 182507500 Test: build Change-Id: I8eb586f14f23607dac684ca9636d4aeae450c6a3 --- drm/1.4/types.hal | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drm/1.4/types.hal b/drm/1.4/types.hal index a4490a543e..8cb27cdbe9 100644 --- a/drm/1.4/types.hal +++ b/drm/1.4/types.hal @@ -32,8 +32,16 @@ enum LogPriority : uint32_t { /** * Returned by getLogMessages to report error diagnostics to the * app. + * + * The |message| field is for informational purposes only, and + * NOT meant to be parsed programmatically when handling errors. + * For programmatic error handling, please check the return |Status| + * of APIs instead. */ struct LogMessage { + /** + * Epoch time in milliseconds. + */ int64_t timeMs; LogPriority priority; string message;