Skip to content

Commit 88443bd

Browse files
authored
Minor improvements (#161)
1 parent 760a54c commit 88443bd

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [v5.5.3](https://github.com/containeroo/SyncFlaer/tree/v5.5.3) (2023-01-02)
4+
5+
[All Commits](https://github.com/containeroo/SyncFlaer/compare/v5.5.2...v5.5.3)
6+
7+
**Bug fixes:**
8+
9+
- Improve log message for duplicated DNS records
10+
- Fix version output
11+
312
## [v5.5.2](https://github.com/containeroo/SyncFlaer/tree/v5.5.2) (2023-01-01)
413

514
[All Commits](https://github.com/containeroo/SyncFlaer/compare/v5.5.1...v5.5.2)

cmd/syncflaer/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
log "github.com/sirupsen/logrus"
1515
)
1616

17-
const version string = "5.5.1"
17+
const version string = "5.5.3"
1818

1919
var latestVersion string
2020

internal/additionalRecords.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ additionalRecords:
2121
}
2222
for _, userRecord := range userRecords {
2323
if userRecord.Name == additionalRecord.Name {
24-
log.Warnf("DNS record %s is already defined in a Traefik route. Skipping...", userRecord.Name)
24+
log.Warnf("DNS record %s already exists. Skipping...", userRecord.Name)
2525
continue additionalRecords
2626
}
2727
}

0 commit comments

Comments
 (0)