Skip to content

Commit

Permalink
Disable logback capture arguments by default (#12445)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Oct 15, 2024
1 parent a8e6374 commit e72ec7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class OpenTelemetryAppender extends UnsynchronizedAppenderBase<ILoggingEv
private boolean captureMarkerAttribute = false;
private boolean captureKeyValuePairAttributes = false;
private boolean captureLoggerContext = false;
private boolean captureArguments = true;
private boolean captureArguments = false;
private List<String> captureMdcAttributes = emptyList();

private volatile OpenTelemetry openTelemetry;
Expand Down

0 comments on commit e72ec7f

Please sign in to comment.