Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ protected final int rollbackDryRun(final List rollbacks,
for (Iterator i = rollbacks.iterator(); i.hasNext();)
{
RollbackableMigrationTask task = (RollbackableMigrationTask) i.next();
log.info("Will execute rollback for task '" + task.getName() + "'");
log.debug("Will execute rollback for task '" + task.getName() + "'");
taskCount++;
JdbcMigrationLauncher launcher = (JdbcMigrationLauncher) rollbacksWithLaunchers
.get(task);
Expand Down Expand Up @@ -144,7 +144,7 @@ protected final int patchDryRun(final PatchInfoStore currentPatchInfoStore,

if (getMigrationRunnerStrategy().shouldMigrationRun(task.getLevel(), currentPatchInfoStore))
{
log.info("Will execute patch task '" + getTaskLabel(task) + "'");
log.debug("Will execute patch task '" + getTaskLabel(task) + "'");
if (log.isDebugEnabled())
{
// Get all the contexts the task will execute in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ private int rollbackDryRun(List<MigrationTask> migrations, MigrationContext cont
{
RollbackableMigrationTask task = (RollbackableMigrationTask) migrationTask;

log.info("Will execute rollback for task '" + getTaskLabel(task) + "'");
log.debug("Will execute rollback for task '" + getTaskLabel(task) + "'");
log.debug("Task will execute in context '" + context + "'");
taskCount++;

Expand Down Expand Up @@ -796,7 +796,7 @@ public int dryRun(PatchInfoStore patchInfoStore, MigrationContext migrationConte
if (migrationRunnerStrategy
.shouldMigrationRun(task.getLevel().intValue(), patchInfoStore))
{
log.info("Will execute patch task '" + getTaskLabel(task) + "'");
log.debug("Will execute patch task '" + getTaskLabel(task) + "'");
log.debug("Task will execute in context '" + migrationContext + "'");
taskCount++;
}
Expand Down