debugSyncInfo method

void debugSyncInfo(
  1. String message
)

Logs message if sync debugging is enabled.

Implementation

void debugSyncInfo(String message) { if (_debugSyncEnabled) logInfo(message); }