Remove thread logging from actions.cpp

Change-Id: I2d2af963f4d6990191d91a336f682516af61d734
This commit is contained in:
Dees_Troy
2013-01-25 18:46:45 +00:00
parent 8005946bd2
commit eb50caaa7a
-3
View File
@@ -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)) {