Skip to content

Commit

Permalink
e2e: unify captialization in some logs in deployers/crud.go
Browse files Browse the repository at this point in the history
Signed-off-by: Parikshith <[email protected]>
  • Loading branch information
parikshithb authored and nirs committed Feb 25, 2025
1 parent 4c0a4da commit 791223c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions e2e/deployers/crud.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func CreatePlacement(ctx types.Context, name, namespace string) error {
return err
}

log.Debugf("Placement \"%s/%s\" already Exists", namespace, name)
log.Debugf("Placement \"%s/%s\" already exists", namespace, name)
}

log.Debugf("Created placement \"%s/%s\"", namespace, name)
Expand Down Expand Up @@ -193,7 +193,7 @@ func CreateSubscription(ctx types.Context, s Subscription) error {
return err
}

log.Debugf("Subscription \"%s/%s\" already Exists", managementNamespace, name)
log.Debugf("Subscription \"%s/%s\" already exists", managementNamespace, name)
}

log.Debugf("Created subscription \"%s/%s\"", managementNamespace, name)
Expand Down Expand Up @@ -258,7 +258,7 @@ func CreatePlacementDecisionConfigMap(ctx types.Context, cmName string, cmNamesp
return fmt.Errorf("could not create configMap %q", cmName)
}

log.Debugf("ConfigMap \"%s/%s\" already Exists", cmNamespace, cmName)
log.Debugf("ConfigMap \"%s/%s\" already exists", cmNamespace, cmName)
}

log.Debugf("Created configMap \"%s/%s\"", cmNamespace, cmName)
Expand Down Expand Up @@ -364,7 +364,7 @@ func CreateApplicationSet(ctx types.Context, a ApplicationSet) error {
return err
}

log.Debugf("Applicationset \"%s/%s\" already Exists", managementNamespace, name)
log.Debugf("Applicationset \"%s/%s\" already exists", managementNamespace, name)
}

log.Debugf("Created applicationset \"%s/%s\"", managementNamespace, name)
Expand Down

0 comments on commit 791223c

Please sign in to comment.