Skip to content

Commit

Permalink
fix: three dots instead of two
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Huck committed Nov 7, 2023
1 parent 61e0a4e commit 84d8102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/sync/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var (
func FilterFactory(configuredFilters []config.Filter) (loadedFilters []Filter) {
for _, configuredFilter := range configuredFilters {
if _, nameExists := filterConfigMapping[configuredFilter.Name]; !nameExists {
log.Warnf("unknown filter: %s, skipping..", configuredFilter.Name)
log.Warnf("unknown filter: %s, skipping...", configuredFilter.Name)
continue
}
// load the default Transformer for the configured name and initialize it based on the config
Expand Down
2 changes: 1 addition & 1 deletion internal/sync/transformer.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var (
func TransformerFactory(configuredTransformers []config.Transformer) (loadedTransformers []Transformer) {
for _, configuredTransformer := range configuredTransformers {
if _, nameExists := transformerConfigMapping[configuredTransformer.Name]; !nameExists {
log.Warnf("unknown transformer: %s, skipping..", configuredTransformer.Name)
log.Warnf("unknown transformer: %s, skipping...", configuredTransformer.Name)
continue
}
// load the default Transformer for the configured name and initialize it based on the config
Expand Down

0 comments on commit 84d8102

Please sign in to comment.