From 5268b3c6ede60689b351475fe8cbc0dfd41053b4 Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Sun, 23 Jan 2011 15:24:28 +0100 Subject: [PATCH] Report stopped MP transmission at higher log level, it's too important to be a "debug only" message. --- src/MultiPlayer/multiplaymgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MultiPlayer/multiplaymgr.cxx b/src/MultiPlayer/multiplaymgr.cxx index 89d2eb85a..7657ad4ee 100644 --- a/src/MultiPlayer/multiplaymgr.cxx +++ b/src/MultiPlayer/multiplaymgr.cxx @@ -561,7 +561,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo) { // Current local data is invalid (NaN), so stop MP transmission. // => Be nice to older FG versions (no NaN checks) and don't waste bandwidth. - SG_LOG(SG_NETWORK, SG_DEBUG, "FGMultiplayMgr::SendMyPosition - " + SG_LOG(SG_NETWORK, SG_ALERT, "FGMultiplayMgr::SendMyPosition - " << "Local data is invalid (NaN). Data not transmitted."); return; }