We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d44f71 commit daad95fCopy full SHA for daad95f
src/validators/ValidateSchemaWithCompas.ts
@@ -28,7 +28,6 @@ export default class ValidateTemplates extends LitElement {
28
const validationErrors = Array.from(document.querySelectorAll('SclValidateResponse > ValidationErrors') ?? []);
29
// Check if there are validation errors, if there are we will process them.
30
if (validationErrors.length > 0) {
31
- console.debug('Retrieved %d validation error from CoMPAS Validator', validationErrors.length);
32
validationErrors.forEach(validationError => {
33
const message = validationError.getElementsByTagNameNS(SVS_NAMESPACE, "Message")!.item(0)!.textContent;
34
dispatchEventOnOpenScd(
0 commit comments