Skip to content

Commit

Permalink
updated test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-jalgaonkar committed Aug 5, 2024
1 parent d52a5e9 commit dde1de1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class AccessLogGrpcFilter<R extends GeneratedMessageV3, S extends G
private RequestParams<Metadata> requestParams;

// The format string for the access log message.
private String format = "{clientIp} {resourcePath} {contentLength} {responseTime}";
private String format;

// Logger instance for logging access log messages.
private static final Logger logger = Logging.loggerWithName("ACCESS-LOG");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public final class AccessLogHttpFilter extends HttpFilter implements Logging {
private static final String CONTENT_LENGTH_HEADER = "Content-Length";

// The format string for the access log message.
private String format = "{clientIp} {resourcePath} {contentLength} {responseTime}";
private String format;

public AccessLogHttpFilter(String format) {
this.format = format;
Expand Down

0 comments on commit dde1de1

Please sign in to comment.