Open peterjc opened 8 years ago
If the same error message repeats more than 5 times, validator compresses the error messages.
Detailed error messages should be written in report files (VAL_ERROR,VAL_INFO,VAL_SUMMARY) in the validator execution directory.
OK, but many of these messages were identical. This means the "compression" has replaced a useful error message with a cryptic one:
INFO: organism classified. Recruiting translation table from taxonomy. Using /transl_table="{0}". (4696 occurrences) (CDSTranslator-11)
could have been:
INFO: organism classified. Recruiting translation table from taxonomy. Using /transl_table="11". (4696 occurrences) (CDSTranslator-11)
Perhaps if the number of different error messages for a given error message with variable placeholders would be <= 10 (or some other small N) then we would show the actual error messages with their counts.
Otherwise we would show the error message with the variable placeholders with total counts (as now).
e.g.
Notice the apparent error message template markers
{0}
,{1}
,{2}
, and{3}
.In this case I presume given this was a bacteria, the first INFO line should have been:
However in general, the error messages are made overly cryptic due to the missing values.