Skip to content

Commit 8da3021

Browse files
authored
Merge pull request #366 from ie3-institute/jh/#365-err-to-warn
Log a warning instead of an error
2 parents a323ddc + 01cc975 commit 8da3021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/edu/ie3/datamodel/io/factory/input/participant/LoadInputFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected LoadInput buildModel(
5252
try {
5353
slp = StandardLoadProfile.parse(data.getField(SLP));
5454
} catch (ParsingException e) {
55-
logger.error(
55+
logger.warn(
5656
"Cannot parse the standard load profile \"{}\" of load \"{}\". Assign no load profile instead.",
5757
data.getField(SLP),
5858
id);

0 commit comments

Comments
 (0)