Skip to content

Commit

Permalink
Add LogEvent Record
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex committed Nov 19, 2024
1 parent 8e66739 commit 4d5a556
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions cli/src/main/java/com/devonfw/tools/ide/process/LogEvent.java
Original file line number Diff line number Diff line change
@@ -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) {

}

0 comments on commit 4d5a556

Please sign in to comment.