Skip to content

Commit 4504a08

Browse files
logging: minor change in log level
1 parent cc94ff7 commit 4504a08

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • src/main/java/org/variantsync/vevos/simulation/variability/pc/variantlines

src/main/java/org/variantsync/vevos/simulation/variability/pc/variantlines/VariantLine.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import org.variantsync.vevos.simulation.variability.pc.options.VariantGenerationOptions;
55

66
import java.util.List;
7+
import java.util.stream.Collectors;
78

89
public record VariantLine(Integer lineNumber) implements VariantLineChunk {
910
@Override
@@ -24,7 +25,9 @@ public List<String> project(final VariantGenerationOptions projectionOptions, fi
2425
// Skipping the line really is the best solution, as the empty line is created by appending a line separator
2526
// to the previous line. I added the additional if-statement, to only catch cases in which more than one line
2627
// is out of bounds, which might indicate a problem.
27-
Logger.warn(logMessage);
28+
Logger.debug(logMessage);
29+
String lines = String.join("\n", splFileLines);
30+
Logger.debug(lines);
2831
}
2932

3033
return List.of();

0 commit comments

Comments
 (0)