Skip to content

Commit

Permalink
Adding more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bjester committed Jan 9, 2024
1 parent cb69f18 commit fe0feb6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ public static boolean reconcile(Context context, Executor executor) {

try {
// Wait for the results to come back
Log.d(TAG, "Waiting for results for sentinel checking " + stateRef);
results = stateFuture.get();
Log.d(TAG, "Received results for sentinel checking " + stateRef);
} catch (ExecutionException | InterruptedException e) {
Log.e(TAG, "Failed to check state for reconciliation " + stateRef, e);
continue;
Expand Down

0 comments on commit fe0feb6

Please sign in to comment.