Skip to content

Commit

Permalink
[java] fix bug for overwriting log output stream passed in by user.
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 10, 2023
1 parent 5f3f7d0 commit 73da1e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ protected OutputStream getLogOutput() {
}

protected void parseLogOutput(String logProperty) {
if (getLogFile() != null) {
if (getLogFile() != null || logOutputStream != null) {
return;
}

Expand Down

0 comments on commit 73da1e8

Please sign in to comment.