dyndns: tweak up-to-date message output

This commit is contained in:
Michael Stapelberg 2020-05-28 09:42:55 +02:00
parent 4a5f55a5de
commit 7950291db6

View File

@ -41,7 +41,10 @@ func Update(ctx context.Context, zone string, record libdns.Record, provider Rec
}
if rec.Value == record.Value {
log.Printf("exit early: record up to date (%s)", record.Value)
log.Printf("record up to date: %s %s %s",
record.Name,
record.Type,
record.Value)
return nil
}