Browse Source

Fix missing table name to warning

tags/release-2.0.0
James Moger 8 years ago
parent
commit
3902340cc2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/java/com/iciql/TableDefinition.java

+ 1
- 1
src/main/java/com/iciql/TableDefinition.java View File

@@ -543,7 +543,7 @@ public class TableDefinition<T> {
if (primitiveBoolean > 1) {
multiplePrimitiveBools = true;
IciqlLogger
.warn("Model {0} has multiple primitive booleans! Possible where,set,join clause problem!");
.warn("Model {0} has multiple primitive booleans! Possible where,set,join clause problem!", tableName);
}
if (primaryKey.size() > 0) {
setPrimaryKey(primaryKey);

Loading…
Cancel
Save