Remove thread logging from actions.cpp
Change-Id: I2d2af963f4d6990191d91a336f682516af61d734
diff --git a/gui/action.cpp b/gui/action.cpp
index 22e3621..e56db2b 100644
--- a/gui/action.cpp
+++ b/gui/action.cpp
@@ -254,7 +254,6 @@
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 @@
} else {
if (pthread_join(t, NULL)) {
LOGE("Error joining threads\n");
- } else {
- LOGI("Thread joined\n");
}
}
if (pthread_attr_destroy(&tattr)) {