File tree 3 files changed +3
-3
lines changed
pkg/retrieval/engine/postgres
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ func (d *DumpJob) Reload(cfg map[string]interface{}) (err error) {
204
204
205
205
// Run starts the job.
206
206
func (d * DumpJob ) Run (ctx context.Context ) (err error ) {
207
- log .Msg (fmt . Sprintf ( "Run job: %s. Options: %v " , d .Name (), d . DumpOptions ))
207
+ log .Msg ("Run job: " , d .Name ())
208
208
209
209
isEmpty , err := tools .IsEmptyDirectory (d .globalCfg .DataDir ())
210
210
if err != nil {
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ func (r *RestoreJob) Reload(cfg map[string]interface{}) (err error) {
110
110
111
111
// Run starts the job.
112
112
func (r * RestoreJob ) Run (ctx context.Context ) (err error ) {
113
- log .Msg (fmt . Sprintf ( "Run job: %s. Options: %v " , r .Name (), r . RestoreOptions ))
113
+ log .Msg ("Run job: " , r .Name ())
114
114
115
115
isEmpty , err := tools .IsEmptyDirectory (r .globalCfg .DataDir ())
116
116
if err != nil {
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ func (r *RestoreJob) Reload(cfg map[string]interface{}) (err error) {
145
145
146
146
// Run starts the job.
147
147
func (r * RestoreJob ) Run (ctx context.Context ) (err error ) {
148
- log .Msg (fmt . Sprintf ( "Run job: %s. Options: %v " , r .Name (), r . CopyOptions ))
148
+ log .Msg ("Run job: " , r .Name ())
149
149
150
150
defer func () {
151
151
if err == nil && r .CopyOptions .Sync .Enabled {
You can’t perform that action at this time.
0 commit comments