Skip to content

Commit

Permalink
print all std out and std err in the log
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Oct 24, 2024
1 parent bf34f34 commit 404bec3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/ai/nets/samj/install/SamEnvManagerAbstract.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ public abstract class SamEnvManagerAbstract {

public void setConsumer(Consumer<String> consumer) {
this.consumer = consumer;
this.mamba.setConsoleOutputConsumer(this.consumer);
this.mamba.setErrorOutputConsumer(this.consumer);
}

/**
Expand Down

0 comments on commit 404bec3

Please sign in to comment.