Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit f78df6a

Browse files
committed
Fix Validazione
1 parent ed16e1e commit f78df6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NET6CustomLibrary/Validazione/Validation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public List<string> ProcessErrorList(ValidationResult validationResult)
1414
List<string> errorList = new();
1515

1616
validationResult.Errors.ForEach(x => errorList.Add(x.ErrorMessage));
17-
validationResult.Errors.ForEach(y => logger.SaveLogError(y.ErrorMessage));
17+
validationResult.Errors.ForEach(y => logger.SaveLogWarning(y.ErrorMessage));
1818

1919
return errorList;
2020
}

0 commit comments

Comments
 (0)