diff --git a/cli/src/main/java/com/devonfw/tools/ide/process/LogEvent.java b/cli/src/main/java/com/devonfw/tools/ide/process/LogEvent.java new file mode 100644 index 000000000..055f81c68 --- /dev/null +++ b/cli/src/main/java/com/devonfw/tools/ide/process/LogEvent.java @@ -0,0 +1,11 @@ +package com.devonfw.tools.ide.process; + +/** + * Represent a log event. + * + * @param error A boolean flag that indicates whether the log event represents and error or standard output + * @param message A string containing the log message + */ +public record LogEvent(boolean error, String message) { + +}