We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5ab7c4 + 923cebf commit 5beaf27Copy full SHA for 5beaf27
libsql-replication/src/replicator.rs
@@ -224,9 +224,9 @@ where
224
}
225
Err(Error::Client(e)) if !error_printed => {
226
if e.downcast_ref::<uuid::Error>().is_some() {
227
- tracing::error!("error connecting to primary. retrying. Verify that the libsql server version is `>=0.22` error: {e}");
+ tracing::warn!("error connecting to primary. retrying. Verify that the libsql server version is `>=0.22` error: {e}");
228
} else {
229
- tracing::error!("error connecting to primary. retrying. error: {e}");
+ tracing::warn!("error connecting to primary. retrying. error: {e}");
230
231
232
error_printed = true;
0 commit comments