Skip to content

Commit

Permalink
improve log msg
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed May 14, 2024
1 parent 4897b96 commit dcd94a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rinex-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ pub fn main() -> Result<(), Error> {
lat = rad2deg(lat);
lon = rad2deg(lon);
info!(
"manually defined position: {:?} [ECEF] (lat={:.5}°, lon={:.5}°",
"Manually defined position: {:?} [ECEF] (lat={:.5}°, lon={:.5}°)",
(x, y, z),
lat,
lon
Expand All @@ -217,7 +217,7 @@ pub fn main() -> Result<(), Error> {
lat = rad2deg(lat);
lon = rad2deg(lon);
info!(
"position defined in dataset: {:?} [ECEF] (lat={:.5}°, lon={:.5}°",
"Position defined in dataset: {:?} [ECEF] (lat={:.5}°, lon={:.5}°)",
(x, y, z),
lat,
lon
Expand All @@ -230,7 +230,7 @@ pub fn main() -> Result<(), Error> {
* This is not problematic unless user is interested in
* advanced operations, which will most likely fail soon or later.
*/
warn!("no RX position defined");
warn!("No RX position defined");
None
}
},
Expand Down

0 comments on commit dcd94a2

Please sign in to comment.