diff --git a/pkg/app/cmd_create.go b/pkg/app/cmd_create.go index 1a6c88a..77f13ee 100644 --- a/pkg/app/cmd_create.go +++ b/pkg/app/cmd_create.go @@ -15,9 +15,6 @@ const ( // cmdCreate is the app's command to create an apc p15 file from key and cert // pem files func (app *app) cmdCreate(_ context.Context, args []string) error { - // done - defer app.stdLogger.Println("create: done") - // extra args == error if len(args) != 0 { return fmt.Errorf("create: failed, %w (%d)", ErrExtraArgs, len(args)) diff --git a/pkg/app/cmd_install.go b/pkg/app/cmd_install.go index 3cdf2cf..fa310b7 100644 --- a/pkg/app/cmd_install.go +++ b/pkg/app/cmd_install.go @@ -10,9 +10,6 @@ import ( // cmdInstall is the app's command to create apc p15 file content from key and cert // pem files and upload the p15 to the specified APC UPS func (app *app) cmdInstall(cmdCtx context.Context, args []string) error { - // done - defer app.stdLogger.Println("install: done") - // extra args == error if len(args) != 0 { return fmt.Errorf("install: failed, %w (%d)", ErrExtraArgs, len(args))