We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c69a6 commit 923cebfCopy full SHA for 923cebf
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