Skip to content

Commit

Permalink
fix #223 log command when using stream-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
willr3 committed Oct 15, 2024
1 parent dcc0199 commit ef9d84a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/io/hyperfoil/tools/qdup/cmd/impl/Sh.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ public void run(String input, Context context) {
},
populated
);
//log the command if using stream logging
if(context.getCoordinator().getSetting(Globals.STREAM_LOGGING,false)){
context.log(populatedCommand);
}
}
context.getCommandTimer().start("await-callback");
}
Expand Down

0 comments on commit ef9d84a

Please sign in to comment.