Skip to content

Commit

Permalink
Merge pull request #288 from frodopwns/log-bug
Browse files Browse the repository at this point in the history
wrong number of args
  • Loading branch information
frodopwns authored Oct 7, 2019
2 parents b16c189 + da00ddf commit d75a2cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/sqldatabase_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (r *SqlDatabaseReconciler) Reconcile(req ctrl.Request) (ctrl.Result, error)
if helpers.IsBeingDeleted(&instance) {
if helpers.HasFinalizer(&instance, SQLDatabaseFinalizerName) {
if err := r.deleteExternal(&instance); err != nil {
log.Info("Delete SqlDatabase failed with ", err.Error())
log.Info("Delete SqlDatabase failed with ", "err", err.Error())
return ctrl.Result{}, err
}

Expand Down

0 comments on commit d75a2cc

Please sign in to comment.