diff --git a/utils/fgcom/fgcom_external.cxx b/utils/fgcom/fgcom_external.cxx index edd0991..e899a8b 100644 --- a/utils/fgcom/fgcom_external.cxx +++ b/utils/fgcom/fgcom_external.cxx @@ -211,7 +211,7 @@ int main(int argc, char** argv) if(isInRange(currentIcao, currentData.lat, currentData.lon, currentData.alt)) { _connected = lib_call(currentIcao, currentFreq); - SG_LOG( SG_GENERAL, SG_INFO, "Connecting " << currentIcao << " on " << currentFreq << " MHz" ); + SG_LOG( SG_GENERAL, SG_INFO, "New Connecting " << currentIcao << " on " << currentFreq << " MHz" ); } else { if(_connected) { _connected = lib_hangup(); @@ -251,7 +251,7 @@ int main(int argc, char** argv) int sessionDuration = 1000; _p.stamp(); if(mode == OBS) { - SG_LOG( SG_GENERAL, SG_DEBUG, "Entering main loop in mode OBS (max duration: 6 hours)" ); + SG_LOG( SG_GENERAL, SG_INFO, "Entering main loop in mode OBS (max duration: 6 hours)" ); sessionDuration *= 2160; // 6 hours for OBS mode lib_setVolume(0.0, 1.0); lib_setCallerId("::OBS::"); @@ -260,12 +260,12 @@ int main(int argc, char** argv) lib_setVolume(1.0, 1.0); if(mode == TEST) { sessionDuration *= 65; // 65 seconds for TEST mode - SG_LOG( SG_GENERAL, SG_DEBUG, "Entering main loop in mode TEST (max duration: 65 seconds)" ); + SG_LOG( SG_GENERAL, SG_INFO, "Entering main loop in mode TEST (max duration: 65 seconds)" ); _airport = "ZZZZ"; num = computePhoneNumber(_frequency, _airport); } else if(mode == ATC) { sessionDuration *= 45; // 45 seconds for ATC mode - SG_LOG( SG_GENERAL, SG_DEBUG, "Entering main loop in mode ATC (max duration: 45 seconds)" ); + SG_LOG( SG_GENERAL, SG_INFO, "Entering main loop in mode ATC (max duration: 45 seconds)" ); num = computePhoneNumber(_atis, _airport, true); } } @@ -513,7 +513,7 @@ void lib_setVolume(double input, double output) { SG_CLAMP_RANGE(input, 0.0, 1.0); SG_CLAMP_RANGE(output, 0.0, 1.0); - SG_LOG(SG_GENERAL, SG_DEBUG, "Set volume input=" << input << " , output=" << output); + SG_LOG(SG_GENERAL, SG_ALERT, "Set volume input=" << input << " , output=" << output); iaxc_input_level_set(input); iaxc_output_level_set(output); } @@ -577,7 +577,7 @@ bool lib_shutdown() return true; } -// function: lib_call +// function: lib_registration // action: register a user on remote server then return the registration ID int lib_registration() @@ -598,9 +598,9 @@ int lib_registration() bool lib_call(std::string icao, double freq) { - SG_LOG(SG_GENERAL, SG_DEBUG, "Request new call"); - SG_LOG(SG_GENERAL, SG_DEBUG, " icao: " << icao); - SG_LOG(SG_GENERAL, SG_DEBUG, " freq: " << freq); + SG_LOG(SG_GENERAL, SG_ALERT, "Request new call"); + SG_LOG(SG_GENERAL, SG_ALERT, " icao: " << icao); + SG_LOG(SG_GENERAL, SG_ALERT, " freq: " << freq); lib_hangup(); iaxc_millisleep(300); std::string num = computePhoneNumber(freq, icao); @@ -611,7 +611,7 @@ bool lib_call(std::string icao, double freq) SG_LOG( SG_GENERAL, SG_ALERT, "Warning: cannot call: " << num ); return false; } - SG_LOG(SG_GENERAL, SG_DEBUG, "iaxc_call(" << num << ")"); + SG_LOG(SG_GENERAL, SG_ALERT, "iaxc_call(" << num << ")"); return true; }