From 9c1e7ac154029d835155b85abab22cb7459f2a7e Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 21 Mar 2019 18:40:15 -0700 Subject: [PATCH] cut logging in test app --- xwords4/linux/linuxsms.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwords4/linux/linuxsms.c b/xwords4/linux/linuxsms.c index c0f62d93b..c1026c696 100644 --- a/xwords4/linux/linuxsms.c +++ b/xwords4/linux/linuxsms.c @@ -374,7 +374,7 @@ check_for_files( gpointer data ) static gint check_for_files_once( gpointer data ) { - LOG_FUNC(); + // LOG_FUNC(); LaunchParams* params = (LaunchParams*)data; LinSMSData* storage = getStorage( params ); @@ -385,7 +385,7 @@ check_for_files_once( gpointer data ) struct timespec oldestModTime; GDir* dir = g_dir_open( storage->myQueue, 0, NULL ); - XP_LOGF( "%s: opening queue %s", __func__, storage->myQueue ); + // XP_LOGF( "%s: opening queue %s", __func__, storage->myQueue ); for ( ; ; ) { const gchar* name = g_dir_read_name( dir ); if ( NULL == name ) { @@ -431,7 +431,7 @@ check_for_files_once( gpointer data ) nRead = decodeAndDelete( storage, oldestFile, buf, sizeof(buf), &fromAddr ); } else { - XP_LOGF( "%s: no file found", __func__ ); + // XP_LOGF( "%s: no file found", __func__ ); } unlock_queue( storage );