Skip to content

Commit

Permalink
Some diagnostics.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Jun 22, 2015
1 parent f55cd2a commit 5a147f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Expand Up @@ -473,7 +473,12 @@ protected void extendToString(StringBuilder sb) {
} else {
sb.append("-");
}

if (isRuntimeSchema()) {
sb.append(",RT");
}
if (isOperational()) {
sb.append(",OPER");
}
}

}
Expand Up @@ -158,6 +158,9 @@ protected void extendToString(StringBuilder sb) {
if (indexed != null && indexed) {
sb.append(",I");
}
if (allowedValues != null && !allowedValues.isEmpty()) {
sb.append(",AVals:").append(allowedValues.size());
}
}

@Override
Expand Down

0 comments on commit 5a147f7

Please sign in to comment.