Skip to content

Commit 83afa58

Browse files
committed
fixup: move comment
Signed-off-by: Todd Baert <[email protected]>
1 parent c18c2a9 commit 83afa58

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/dev/openfeature/sdk/hooks/logging/LoggingHook.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/**
1515
* A hook for logging flag evaluations.
1616
* Useful for debugging.
17+
* Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
1718
*/
1819
@Slf4j
1920
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(value = "RV_RETURN_VALUE_IGNORED",
@@ -35,15 +36,13 @@ public class LoggingHook implements Hook<Object> {
3536

3637
/**
3738
* Construct a new LoggingHook.
38-
* Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
3939
*/
4040
public LoggingHook() {
4141
this(false);
4242
}
4343

4444
/**
4545
* Construct a new LoggingHook.
46-
* Flag evaluation data is logged at debug and error in before/after stages and error stages, respectively.
4746
* @param includeEvaluationContext include a serialized evaluation context in the log message (defaults to false)
4847
*/
4948
public LoggingHook(boolean includeEvaluationContext) {

0 commit comments

Comments
 (0)