-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathLoggingUtils.java
102 lines (86 loc) · 2.98 KB
/
LoggingUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates.
* Licensed under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package software.amazon.lambda.powertools.logging;
import java.util.Map;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.logging.log4j.ThreadContext;
import static java.util.Arrays.asList;
/**
* A class of helper functions to add additional functionality to Logging.
*
* {@see Logging}
*/
public final class LoggingUtils {
private static ObjectMapper objectMapper;
private LoggingUtils() {
}
/**
* Appends an additional key and value to each log entry made. Duplicate values
* for the same key will be replaced with the latest.
*
* @param key The name of the key to be logged
* @param value The value to be logged
*/
public static void appendKey(String key, String value) {
ThreadContext.put(key, value);
}
/**
* Appends additional key and value to each log entry made. Duplicate values
* for the same key will be replaced with the latest.
*
* @param customKeys Map of custom keys values to be appended to logs
*/
public static void appendKeys(Map<String, String> customKeys) {
ThreadContext.putAll(customKeys);
}
/**
* Remove an additional key from log entry.
*
* @param customKey The name of the key to be logged
*/
public static void removeKey(String customKey) {
ThreadContext.remove(customKey);
}
/**
* Removes additional keys from log entry.
*
* @param keys Map of custom keys values to be appended to logs
*/
public static void removeKeys(String... keys) {
ThreadContext.removeAll(asList(keys));
}
/**
* Sets correlation id attribute on the logs.
*
* @param value The value of the correlation id
*/
public static void setCorrelationId(String value) {
ThreadContext.put("correlation_id", value);
}
/**
* Sets the instance of ObjectMapper object which is used for serialising event when
* {@code @Logging(logEvent = true)}.
*
* @param objectMapper Custom implementation of object mapper to be used for logging serialised event
*/
public static void defaultObjectMapper(ObjectMapper objectMapper) {
LoggingUtils.objectMapper = objectMapper;
}
public static ObjectMapper objectMapper() {
if(null == objectMapper) {
objectMapper = new ObjectMapper();
}
return objectMapper;
}
}