forked from devonfw/IDEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
cli/src/main/java/com/devonfw/tools/ide/process/LogEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { | ||
|
||
} |