Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Gerring <[email protected]>
  • Loading branch information
jeromevdl and scottgerring authored Dec 6, 2023
1 parent 5ba6d1a commit 75f866f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion powertools-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<packaging>jar</packaging>

<name>Powertools for AWS Lambda (Java) library Logging</name>
<description>Set of utility for better logging - common</description>
<description>Set of utilities to improve Lambda function handler logging - common</description>
<url>https://aws.amazon.com/lambda/</url>
<issueManagement>
<system>GitHub Issues</system>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
/**
* Custom encoder for logback that encodes logs in JSON format.
* It does not use a JSON library but a custom serializer ({@link LambdaJsonSerializer})
* to reduce the weight of the library.
*/
public class LambdaJsonEncoder extends EncoderBase<ILoggingEvent> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@
/**
* This class will serialize the log events in json.<br/>
* <p>
* Inspired from the ElasticSearch Serializer co.elastic.logging.EcsJsonSerializer, this class doesn't use
* any JSON (de)serialization library (Jackson, Gson, etc.) to avoid the dependency
* Inspired from the ElasticSearch Serializer co.elastic.logging.EcsJsonSerializer
*/
public class LambdaJsonSerializer {
protected static final String TIMESTAMP_ATTR_NAME = "timestamp";
Expand Down

0 comments on commit 75f866f

Please sign in to comment.