From 261fac4b0a3bd1810968b2e6d2102ac7a65dceee Mon Sep 17 00:00:00 2001 From: Matt Porter Date: Thu, 10 May 2018 12:35:05 -0400 Subject: app: remove unneeded console message from HMI init boilerplate Remove unneeded debug/notice message from the new HMI init code. The logs are verbose enough as is without the HMI-specific messages drowning out the real phone app-specific info. Change-Id: I5d17de3a6806a967d4c676b5a2d19ac6599fa204 Signed-off-by: Matt Porter --- app/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index 0881659..6fd0e9a 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -79,7 +79,6 @@ int main(int argc, char *argv[]) // Create an event callback against an event type. Here a lambda is called when SyncDraw event occurs qwm->set_event_handler(QLibWindowmanager::Event_SyncDraw, [qwm, myname](json_object *object) { Q_UNUSED(object); - fprintf(stderr, "Surface got syncDraw!\n"); qwm->endDraw(myname); }); -- cgit 1.2.3-korg