File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/dev/openfeature/sdk/hooks/logging Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 14
14
/**
15
15
* A hook for logging flag evaluations.
16
16
* Useful for debugging.
17
+ * Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
17
18
*/
18
19
@ Slf4j
19
20
@ edu .umd .cs .findbugs .annotations .SuppressFBWarnings (value = "RV_RETURN_VALUE_IGNORED" ,
@@ -35,15 +36,13 @@ public class LoggingHook implements Hook<Object> {
35
36
36
37
/**
37
38
* Construct a new LoggingHook.
38
- * Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
39
39
*/
40
40
public LoggingHook () {
41
41
this (false );
42
42
}
43
43
44
44
/**
45
45
* Construct a new LoggingHook.
46
- * Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
47
46
* @param includeEvaluationContext include a serialized evaluation context in the log message (defaults to false)
48
47
*/
49
48
public LoggingHook (boolean includeEvaluationContext ) {
You can’t perform that action at this time.
0 commit comments