summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gui/action.cpp3
1 files changed, 0 insertions, 3 deletions
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)) {