Skip to content

Commit 3c2d3a3

Browse files
authored
Fix teardown messages (#92)
1 parent a7e5f1c commit 3c2d3a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/deployer/deployer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ func (d *Deployer) Teardown(ctx context.Context, components component.Component)
703703
}
704704

705705
func (d *Deployer) teardownCentral(ctx context.Context) error {
706-
d.logger.Infof("🗑️ Tearing down %s", d.centralNamespace)
706+
d.logger.Infof("🗑️ Tearing down central in namespace %s", d.centralNamespace)
707707

708708
if !d.namespaceExists(d.centralNamespace) {
709709
d.logger.Infof("Namespace %s doesn't exist, skipping", d.centralNamespace)
@@ -730,7 +730,7 @@ func (d *Deployer) teardownCentral(ctx context.Context) error {
730730
}
731731

732732
func (d *Deployer) teardownSecuredCluster(ctx context.Context) error {
733-
d.logger.Infof("🗑️ Tearing down %s", d.sensorNamespace)
733+
d.logger.Infof("🗑️ Tearing down secured cluster in namespace %s", d.sensorNamespace)
734734

735735
if !d.namespaceExists(d.sensorNamespace) {
736736
d.logger.Infof("Namespace %s doesn't exist, skipping", d.sensorNamespace)

0 commit comments

Comments
 (0)