remove extra curly bracket in logger

This commit is contained in:
Henry Hiles 2026-05-30 11:11:19 -04:00
commit db12fd2e9a
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -32,7 +32,7 @@ Time: ${DateTime.now().toIso8601String()}
Provider: ${context.provider} Provider: ${context.provider}
Previous Value: ${previousValue is AsyncData ? previousValue.value : previousValue} Previous Value: ${previousValue is AsyncData ? previousValue.value : previousValue}
New Value: ${newValue is AsyncData ? newValue.value : newValue} New Value: ${newValue is AsyncData ? newValue.value : newValue}
}"""); """);
} }
void showError(Object error, [StackTrace? stackTrace]) { void showError(Object error, [StackTrace? stackTrace]) {