Merge pull request #1410 from jamesagnew/ks-migration-log-messages

fix log message
This commit is contained in:
Diederik Muylwyk 2019-08-01 19:15:41 -04:00 committed by GitHub
commit bb03a058bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public abstract class BaseTableColumnTypeTask<T extends BaseTableTask> extends B
Validate.notNull(myNullable);
if (myColumnType == ColumnTypeEnum.STRING) {
Validate.notNull(myColumnLength, "No length specified for " + ColumnTypeEnum.STRING + " column {}.", getColumnName());
Validate.notNull(myColumnLength, "No length specified for " + ColumnTypeEnum.STRING + " column " + getColumnName());
} else {
Validate.isTrue(myColumnLength == null);
}