1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-08-08 06:53:54 +00:00

Changing some logs from ERROR to WARNING

This commit is contained in:
Carles Fernandez 2014-05-14 01:37:47 +02:00
parent 51706f715f
commit 71109eec9e

View File

@ -393,7 +393,7 @@ bool gnss_sdr_supl_client::save_ephemeris_map_xml(const std::string file_name, s
}
else
{
LOG(ERROR) << "Failed to save Ephemeris, map is empty";
LOG(WARNING) << "Failed to save Ephemeris, map is empty";
return false;
}
}
@ -437,7 +437,7 @@ bool gnss_sdr_supl_client::save_utc_map_xml(const std::string file_name, std::ma
}
else
{
LOG(ERROR) << "Failed to save UTC model, map is empty";
LOG(WARNING) << "Failed to save UTC model, map is empty";
return false;
}
}
@ -481,7 +481,7 @@ bool gnss_sdr_supl_client::save_iono_map_xml(const std::string file_name, std::m
}
else
{
LOG(ERROR) << "Failed to save IONO model, map is empty";
LOG(WARNING) << "Failed to save IONO model, map is empty";
return false;
}
}
@ -525,7 +525,7 @@ bool gnss_sdr_supl_client::save_ref_time_map_xml(const std::string file_name, st
}
else
{
LOG(ERROR) << "Failed to save Ref Time, map is empty";
LOG(WARNING) << "Failed to save Ref Time, map is empty";
return false;
}
}
@ -569,7 +569,7 @@ bool gnss_sdr_supl_client::save_ref_location_map_xml(const std::string file_name
}
else
{
LOG(ERROR) << "Failed to save Ref Location, map is empty";
LOG(WARNING) << "Failed to save Ref Location, map is empty";
return false;
}
}