Remove stray log statement (#359)

This commit is contained in:
Frederik Ring 2024-02-13 19:54:18 +01:00 committed by GitHub
parent 9a1e885138
commit 5c8bc107de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,6 @@ func newScript(c *Config, envVars map[string]string) (*script, func() error, err
} else {
_ = os.Setenv(currentKey, currentVal)
}
s.logger.Info(fmt.Sprintf("unset %v: %v", currentKey, currentVal))
}(key, currentVal, currentOk)
if err := os.Setenv(key, value); err != nil {
@ -99,7 +98,6 @@ func newScript(c *Config, envVars map[string]string) (*script, func() error, err
err,
)
}
s.logger.Info(fmt.Sprintf("set %v: %v", key, value))
}
s.registerHook(hookLevelPlumbing, func(error) error {
s.stats.EndTime = time.Now()