1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

Fix typo in log message.

This commit is contained in:
Martin Hoffmann
2018-11-28 16:53:42 +01:00
parent 4fa46026df
commit fffa19174f

View File

@ -716,7 +716,7 @@ impl RsyncCommand {
if !output.stdout.is_empty() {
String::from_utf8_lossy(&output.stdout).lines().for_each(|l| {
info!(
"rsync {}/{}; {}", source.authority(), source.module(), l
"rsync {}/{}: {}", source.authority(), source.module(), l
)
})
}