From afad224ca0b004efcd23a6eb79cfad8b82d72f01 Mon Sep 17 00:00:00 2001 From: Automatic Release Builder Date: Fri, 25 Sep 2020 13:54:36 +0100 Subject: [PATCH] Fix level of terrasync start/stop messages --- simgear/scene/tsync/terrasync.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/scene/tsync/terrasync.cxx b/simgear/scene/tsync/terrasync.cxx index 4898081c..28b56839 100644 --- a/simgear/scene/tsync/terrasync.cxx +++ b/simgear/scene/tsync/terrasync.cxx @@ -970,12 +970,12 @@ void SGTerraSync::update(double) if (enabled && !worker_running) { reinit(); - SG_LOG(SG_TERRASYNC, SG_ALERT, "Terrasync started"); + SG_LOG(SG_TERRASYNC, SG_MANDATORY_INFO, "Terrasync started"); } else if (!enabled && worker_running) { reinit(); - SG_LOG(SG_TERRASYNC, SG_ALERT, "Terrasync stopped"); + SG_LOG(SG_TERRASYNC, SG_MANDATORY_INFO, "Terrasync stopped"); } TerrasyncThreadState copiedState(_workerThread->threadsafeCopyState());