aboutsummaryrefslogtreecommitdiffstats
path: root/filamento/src/logic/connect.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-03-27 19:09:35 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2025-03-27 19:09:35 +0000
commita367aca33fecc03270b5b9ad2a6a21281d760fd8 (patch)
tree695270823ee5d55f483875580c509fb2c300bd26 /filamento/src/logic/connect.rs
parent83a6aa0574190137b38331bd53795324139237cf (diff)
downloadluz-a367aca33fecc03270b5b9ad2a6a21281d760fd8.tar.gz
luz-a367aca33fecc03270b5b9ad2a6a21281d760fd8.tar.bz2
luz-a367aca33fecc03270b5b9ad2a6a21281d760fd8.zip
refactor(filamento): handle_online logic
Diffstat (limited to 'filamento/src/logic/connect.rs')
-rw-r--r--filamento/src/logic/connect.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/filamento/src/logic/connect.rs b/filamento/src/logic/connect.rs
index d7b9fee..dc05448 100644
--- a/filamento/src/logic/connect.rs
+++ b/filamento/src/logic/connect.rs
@@ -19,7 +19,7 @@ pub async fn handle_connect(logic: ClientLogic, connection: Connected) {
.await;
debug!("sent roster req");
let roster = recv.await;
- debug!("got roster");
+ debug!("got roster: {:?}", roster);
match roster {
Ok(r) => match r {
Ok(roster) => {
@@ -42,6 +42,7 @@ pub async fn handle_connect(logic: ClientLogic, connection: Connected) {
)
.await;
let set_status = recv.await;
+ debug!("sent initial presence");
match set_status {
Ok(s) => match s {
Ok(()) => {