Skip to content

Commit

Permalink
Do not print out "Liquibase 'updateSQL' successful" to console
Browse files Browse the repository at this point in the history
git-svn-id: http://liquibase.jira.com/svn/CORE/trunk@2022 e6edf6fb-f266-4316-afb4-e53d95876a76
  • Loading branch information
jova committed Jan 18, 2011
1 parent 357309b commit 1ce12e9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -137,7 +137,7 @@ public static void main(String args[]) throws CommandLineParsingException, IOExc
System.out.println("Liquibase Update Successful");
} else if (main.command.startsWith("rollback") && !main.command.endsWith("SQL")) {
System.out.println("Liquibase Rollback Successful");
} else {
} else if (!main.command.endsWith("SQL")) {
System.out.println("Liquibase '"+main.command+"' Successful");
}
} catch (Throwable e) {
Expand Down

0 comments on commit 1ce12e9

Please sign in to comment.