Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
khyatimahendru committed Dec 20, 2024
1 parent be8a872 commit 61cf36e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private void familyAddr(String family) {
catchToNull(() -> deviceMetadata.localnet.families.get(family).addr),
format("No %s address defined in metadata", family));
HashMap<String, FamilyLocalnetState> families = deviceState.localnet.families;
waitUntil(format("Wait for device state localnet family %s to be available", family),
waitUntil(format("device state localnet family %s is available", family),
() -> families.containsKey(family) ? null
: format("Because family %s not found in device state localnet family set: %s", family,
CSV_JOINER.join(families.keySet())));
Expand Down

0 comments on commit 61cf36e

Please sign in to comment.