You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dataLogger.warn("current row has column of type <boolean> with non-<boolean> value - skipping column");
264
+
dataLogger.warn(String.format("current row has column of type <boolean> for variable < %s > with non-<boolean> value - skipping column", conceptType));
265
265
}
266
266
break;
267
267
case"datetime":
@@ -278,7 +278,7 @@ public static Thing addAttributeOfColumnType(Thing statement,
278
278
statement = statement.has(conceptType, dateTime);
279
279
}
280
280
} catch (DateTimeExceptiondateTimeException) {
281
-
dataLogger.warn("current row has column of type <datetime> with non-<ISO 8601 format> datetime value: ");
281
+
dataLogger.warn(String.format("current row has column of type <datetime> for variable < %s > with non-<ISO 8601 format> datetime value: ", conceptType));
282
282
dataLogger.warn(dateTimeException.getMessage());
283
283
}
284
284
break;
@@ -306,15 +306,15 @@ public static Relation addAttributeOfColumnType(Relation statement,
dataLogger.warn("current row has column of type <boolean> with non-<boolean> value - skipping column");
327
+
dataLogger.warn(String.format("current row has column of type <boolean> for variable < %s > with non-<boolean> value - skipping column", conceptType));
328
328
}
329
329
break;
330
330
case"datetime":
@@ -341,7 +341,7 @@ public static Relation addAttributeOfColumnType(Relation statement,
341
341
statement = statement.has(conceptType, dateTime);
342
342
}
343
343
} catch (DateTimeExceptiondateTimeException) {
344
-
dataLogger.warn("current row has column of type <datetime> with non-<ISO 8601 format> datetime value: ");
344
+
dataLogger.warn(String.format("current row has column of type <datetime> for variable < %s > with non-<ISO 8601 format> datetime value: ", conceptType));
345
345
dataLogger.warn(dateTimeException.getMessage());
346
346
}
347
347
break;
@@ -371,15 +371,15 @@ public static Thing addAttributeOfColumnType(UnboundVariable statement,
dataLogger.warn("current row has column of type <boolean> with non-<boolean> value - skipping column");
392
+
dataLogger.warn(String.format("current row has column of type <boolean> for variable < %s > with non-<boolean> value - skipping column", conceptType));
393
393
}
394
394
break;
395
395
case"datetime":
@@ -406,7 +406,7 @@ public static Thing addAttributeOfColumnType(UnboundVariable statement,
dataLogger.warn("current row has column of type <datetime> with non-<ISO 8601 format> datetime value: ");
409
+
dataLogger.warn(String.format("current row has column of type <datetime> for variable < %s > with non-<ISO 8601 format> datetime value: ", conceptType));
0 commit comments