fix log message

This commit is contained in:
Ken Stevens 2019-08-01 19:11:06 -04:00
parent 23ca9cd8eb
commit af9fc882c1
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);
}