Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
PROC-1528: Add to string
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharygoodwin committed May 30, 2024
1 parent 1d34b41 commit b83d6fc
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,16 @@
@Data
public class PayloadExperimentConfig {
@Nullable private String priority;
@Nonnull private List<String> namespace = Collections.emptyList();
@Nonnull private List<String> namespaces = Collections.emptyList();

@Override
public String toString() {
return "PayloadExperimentConfig{"
+ "priority='"
+ priority
+ '\''
+ ", namespaces="
+ namespaces
+ '}';
}
}

0 comments on commit b83d6fc

Please sign in to comment.