1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

Fix: Remove unecessary error print

This commit is contained in:
koplas 2024-09-16 15:58:31 +02:00
parent 8e4e508073
commit 20bee797c6

View file

@ -352,7 +352,7 @@ func (pmdl *ProviderMetadataLoader) loadFromURL(path string) *LoadedProviderMeta
case len(errors) > 0: case len(errors) > 0:
result.Messages = []ProviderMetadataLoadMessage{{ result.Messages = []ProviderMetadataLoadMessage{{
Type: SchemaValidationFailed, Type: SchemaValidationFailed,
Message: fmt.Sprintf("%s: Validating against JSON schema failed: %v", path, err), Message: fmt.Sprintf("%s: Validating against JSON schema failed", path),
}} }}
for _, msg := range errors { for _, msg := range errors {
result.Messages.Add( result.Messages.Add(