Skip to content

Commit

Permalink
Removing label from toLogString.
Browse files Browse the repository at this point in the history
  • Loading branch information
jekopena authored and tonihei committed Mar 25, 2024
1 parent 54c23e2 commit 8673e6d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1338,9 +1338,6 @@ public static String toLogString(@Nullable Format format) {
if (format.language != null) {
builder.append(", language=").append(format.language);
}
if (format.label != null) {
builder.append(", label=").append(format.label);
}
if (format.labels.size() > 0) {
builder.append(", labels=[");
Joiner.on(',').appendTo(builder, format.labels);
Expand Down

0 comments on commit 8673e6d

Please sign in to comment.