Skip to content

Commit

Permalink
reduce loglevel
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkarlsen committed Sep 8, 2023
1 parent 327d302 commit 3760353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/migration_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (r *MigrationReconciler) getExistingJob(ctx context.Context, migration *fly
func (r *MigrationReconciler) submitMigrationJob(ctx context.Context, migration *flywayv1alpha1.Migration) error {
job := r.createJobSpec(ctx, migration)
logger := log.FromContext(ctx)
logger.Info("Generated job", "job", fmt.Sprintf("%+v", job))
logger.V(1).Info("Generated job", "job", fmt.Sprintf("%+v", job))

return crud.CreateResourceIfNotExists(ctx, migration, migration.Namespace, &job)
}
Expand Down

0 comments on commit 3760353

Please sign in to comment.