Skip to content

Commit

Permalink
0000803: log table name
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 6, 2012
1 parent 3088c72 commit d428ba0
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -199,10 +199,11 @@ protected void testColumnNamesMatchValues(DataMetaData dataMetaData, ISymmetricD
possibleOracleErrorMessage = String.format("One possible cause of this issue is when channel.contains_big_lobs=0 and the captured row_data size exceeds 4k, captured data will be truncated at 4k. channel.contains_big_lobs is currently set to %s.", isContainsBigLobs ? "1" : "0");
}
String message = String.format(
"The number of recorded column names (%d) did not match the number of captured data values (%d). The failed data_id is %d and the event type is %s. %s\ncolumn_names:\n%s\nvalues:\n%s",
"The number of recorded column names (%d) did not match the number of captured data values (%d). The data_id %d failed for an %s on %s. %s\ncolumn_names:\n%s\nvalues:\n%s",
columnNames.length, values.length,
dataMetaData.getData().getDataId(),
dataMetaData.getData().getDataEventType().name(),
dataMetaData.getData().getTableName(),
possibleOracleErrorMessage,
ArrayUtils.toString(columnNames), ArrayUtils.toString(values));
throw new SymmetricException(message);
Expand Down

0 comments on commit d428ba0

Please sign in to comment.