更新 'utils/fgcom/fgcom_external.cxx'

This commit is contained in:
zhongjin 2022-11-30 23:06:23 +08:00
parent e3f2781b1d
commit 21291723c6

View File

@ -605,6 +605,8 @@ bool lib_call(std::string icao, double freq)
SG_LOG( SG_GENERAL, SG_ALERT, "Warning: cannot call: " << num ); SG_LOG( SG_GENERAL, SG_ALERT, "Warning: cannot call: " << num );
return false; return false;
} }
SG_LOG(SG_GENERAL, SG_DEBUG, "iaxc_call(" << num << ")");
return true; return true;
} }
@ -622,6 +624,8 @@ bool lib_directCall(std::string icao, double freq, std::string num)
SG_LOG( SG_GENERAL, SG_ALERT, "Warning: cannot call: " << num ); SG_LOG( SG_GENERAL, SG_ALERT, "Warning: cannot call: " << num );
return false; return false;
} }
SG_LOG(SG_GENERAL, SG_DEBUG, "iaxc_call(" << num << ")");
return true; return true;
} }