From 624ca3126342298ec508cac6a33fbaab10049939 Mon Sep 17 00:00:00 2001 From: mfranz Date: Mon, 14 Nov 2005 21:59:13 +0000 Subject: [PATCH] number one reason for lots of stale METAR reports is wrongly set system time --- src/Environment/environment_ctrl.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Environment/environment_ctrl.cxx b/src/Environment/environment_ctrl.cxx index 814f1f4a3..a947c48a9 100644 --- a/src/Environment/environment_ctrl.cxx +++ b/src/Environment/environment_ctrl.cxx @@ -573,7 +573,8 @@ FGMetarEnvironmentCtrl::fetch_data( const string &icao ) if (++_stale_count > 10) { _error_count = 1000; - throw sg_io_exception("More than 10 stale METAR messages in a row."); + throw sg_io_exception("More than 10 stale METAR messages in a row." + " Check your system time!"); } } else _stale_count = 0; -- 2.39.5