From eb50caaa7a1344b95a668082d1b1909a77c8bd00 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Fri, 25 Jan 2013 18:46:45 +0000 Subject: Remove thread logging from actions.cpp Change-Id: I2d2af963f4d6990191d91a336f682516af61d734 --- gui/action.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'gui') diff --git a/gui/action.cpp b/gui/action.cpp index 22e362177..e56db2b76 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -254,7 +254,6 @@ int GUIAction::doActions() return -1; } */ - LOGI("Creating thread\n"); int ret = pthread_create(&t, &tattr, thread_start, this); if (ret) { LOGE("Unable to create more threads for actions... continuing in same thread! %i\n", ret); @@ -262,8 +261,6 @@ int GUIAction::doActions() } else { if (pthread_join(t, NULL)) { LOGE("Error joining threads\n"); - } else { - LOGI("Thread joined\n"); } } if (pthread_attr_destroy(&tattr)) { -- cgit v1.2.3