diff options
author | Matt Porter <mporter@konsulko.com> | 2018-05-10 12:35:05 -0400 |
---|---|---|
committer | Matt Porter <mporter@konsulko.com> | 2018-05-11 14:58:40 -0400 |
commit | 261fac4b0a3bd1810968b2e6d2102ac7a65dceee (patch) | |
tree | eac2c35e164cfc3655e39577cac674c11c62e664 | |
parent | 9e7df33f38d650047f40f7e4e0c42c220bd03db4 (diff) |
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 <mporter@konsulko.com>
-rw-r--r-- | app/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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); }); |