From: Mathias Froehlich Date: Sat, 22 Dec 2012 09:09:17 +0000 (+0100) Subject: hla: Lower the log level of two alerts. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=541606e00d155676abdb589755569be766b62b27;p=simgear.git hla: Lower the log level of two alerts. Trying to interpret the object template in a yet unimplemented format is not worth an alert. --- diff --git a/simgear/hla/HLAFederate.cxx b/simgear/hla/HLAFederate.cxx index 8e590be4..462351cc 100644 --- a/simgear/hla/HLAFederate.cxx +++ b/simgear/hla/HLAFederate.cxx @@ -787,7 +787,7 @@ HLAFederate::processMessages() bool HLAFederate::readRTI13ObjectModelTemplate(const std::string& objectModel) { - SG_LOG(SG_IO, SG_ALERT, "HLA version RTI13 not yet(!?) supported."); + SG_LOG(SG_IO, SG_WARN, "HLA version RTI13 not yet(!?) supported."); return false; } @@ -816,7 +816,7 @@ HLAFederate::readRTI1516ObjectModelTemplate(const std::string& objectModel) bool HLAFederate::readRTI1516EObjectModelTemplate(const std::string& objectModel) { - SG_LOG(SG_IO, SG_ALERT, "HLA version RTI1516E not yet(!?) supported."); + SG_LOG(SG_IO, SG_WARN, "HLA version RTI1516E not yet(!?) supported."); return false; }