From 7e591f39a56e80b69431dc8e9365272531dc775c Mon Sep 17 00:00:00 2001 From: Eric House Date: Sat, 4 Jun 2022 17:48:51 -0700 Subject: [PATCH] log isoCode --- xwords4/common/nli.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xwords4/common/nli.c b/xwords4/common/nli.c index 2cefae8fc..e26f3c074 100644 --- a/xwords4/common/nli.c +++ b/xwords4/common/nli.c @@ -279,10 +279,10 @@ logNLI( const NetLaunchInfo* nli, const char* callerFunc, const int callerLine ) } XP_UCHAR buf[256+128]; - XP_SNPRINTF( buf, VSIZE(buf), "{ctyps: [%s], nPlayersT: %d; nPlayersH: %d; " - "gameID: %d; inviteID: %s, mqttid: %s}", conTypes, - nli->nPlayersT, nli->nPlayersH, nli->gameID, nli->inviteID, - nli->mqttDevID ); + XP_SNPRINTF( buf, VSIZE(buf), "{ctyps: [%s], nPlayersT: %d, nPlayersH: %d, " + "isoCode: '%s', gameID: %d, inviteID: %s, mqttid: %s}", conTypes, + nli->nPlayersT, nli->nPlayersH, nli->isoCode, nli->gameID, + nli->inviteID, nli->mqttDevID ); XP_LOGF( "%s", buf ); } # endif