EGong

An UDP Multicast messaging application
git clone git://xatko.vsos.ethz.ch/EGong.git
Log | Files | Refs

commit 59bc50f98ec1fb32534ec45742064c9257987218
parent d5cf47b490dc24af0f055c8872d92f61d7f28eec
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sun, 14 Sep 2014 17:43:08 +0200

Removed some cycling verbosity.

Diffstat:
src/Interfaces.c | 2--
src/Interfaces/GTK.c | 1-
2 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/Interfaces.c b/src/Interfaces.c @@ -188,7 +188,6 @@ int EGong_interface_cycle(void){ int i, ret; String msg; char *dest; - do_log("Checking for new input", LOG_TYPE_NORMAL, LOG_LEVEL_DEBUG); for(i=0; i<CSIZEOF(EGong_interfaces); i++){ if(IF_ACTIVE(EGong_interfaces[i]) && IF_CAN_CYCLE(EGong_interfaces[i])){ msg.data=dest=NULL; msg.length=0; @@ -200,7 +199,6 @@ int EGong_interface_cycle(void){ } } } - do_log("Checking for new message", LOG_TYPE_NORMAL, LOG_LEVEL_DEBUG); msg.data=NULL; msg.length=0; if(DEP_AVAIL(EGONG_DEP_LISTENER)&&EGong_cnc_getmessage(&msg)==0){ for(i=0; i<CSIZEOF(EGong_interfaces); i++){ diff --git a/src/Interfaces/GTK.c b/src/Interfaces/GTK.c @@ -289,7 +289,6 @@ void EGong_if_gtk_free_item_value(struct EGong_GUI_item *itm, void *element){ return; } gboolean Egong_waiter_gtk_callback(GIOChannel *source, GIOCondition condition, gpointer data){ - do_log("Trigger", LOG_TYPE_NORMAL, LOG_LEVEL_DEBUG); if(EGong_interface_cycle()!=0){ EGong_if_gtk_shutdown(NULL); }