diff --git a/internal/deployer/deployer.go b/internal/deployer/deployer.go index c6947423..eda4f848 100644 --- a/internal/deployer/deployer.go +++ b/internal/deployer/deployer.go @@ -699,7 +699,7 @@ func (d *Deployer) Teardown(ctx context.Context, components component.Component) } func (d *Deployer) teardownCentral(ctx context.Context) error { - d.logger.Infof("🗑️ Tearing down %s", d.centralNamespace) + d.logger.Infof("🗑️ Tearing down central in namespace %s", d.centralNamespace) if !d.namespaceExists(d.centralNamespace) { d.logger.Infof("Namespace %s doesn't exist, skipping", d.centralNamespace) @@ -726,7 +726,7 @@ func (d *Deployer) teardownCentral(ctx context.Context) error { } func (d *Deployer) teardownSecuredCluster(ctx context.Context) error { - d.logger.Infof("🗑️ Tearing down %s", d.sensorNamespace) + d.logger.Infof("🗑️ Tearing down secured cluster in namespace %s", d.sensorNamespace) if !d.namespaceExists(d.sensorNamespace) { d.logger.Infof("Namespace %s doesn't exist, skipping", d.sensorNamespace)