We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df2382 commit 9716226Copy full SHA for 9716226
1 file changed
microbot/src/lib.rs
@@ -153,7 +153,7 @@ impl MatrixMessenger {
153
let sync_monitor = last_synced.clone();
154
let sync_signal = self.signal.clone();
155
156
- tracing::info!("Spawning sync task");
+ tracing::info!("Creating sync future");
157
158
let settings = SyncSettings::default()
159
.token(response.next_batch)
@@ -221,6 +221,8 @@ impl MatrixMessenger {
221
Ok(room) => tracing::info!(?room, "Joined room"),
222
Err(err) => tracing::error!(?room, ?err, "Failed to join room"),
223
}
224
+ } else {
225
+ tracing::info!(?room, "Received message for already joined room");
226
227
228
0 commit comments