mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-19 16:58:55 +00:00
Make youmu more noisy for debugging
This commit is contained in:
parent
1b02993e98
commit
ea75818c99
2 changed files with 5 additions and 1 deletions
|
@ -58,12 +58,13 @@ impl youmubot_prelude::Announcer for Announcer {
|
||||||
c: c.clone(),
|
c: c.clone(),
|
||||||
data: d.clone(),
|
data: d.clone(),
|
||||||
};
|
};
|
||||||
let s = &self;
|
let s = &*self;
|
||||||
async move {
|
async move {
|
||||||
let channels = channels.channels_of(ctx.c.clone(), user_id).await;
|
let channels = channels.channels_of(ctx.c.clone(), user_id).await;
|
||||||
if channels.is_empty() {
|
if channels.is_empty() {
|
||||||
return; // We don't wanna update an user without any active server
|
return; // We don't wanna update an user without any active server
|
||||||
}
|
}
|
||||||
|
println!("scanning {}", osu_user.id);
|
||||||
match [Mode::Std, Mode::Taiko, Mode::Catch, Mode::Mania]
|
match [Mode::Std, Mode::Taiko, Mode::Catch, Mode::Mania]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|m| {
|
.map(|m| {
|
||||||
|
@ -74,6 +75,7 @@ impl youmubot_prelude::Announcer for Announcer {
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(v) => {
|
Ok(v) => {
|
||||||
|
println!("scanning {} done", osu_user.id);
|
||||||
osu_user.last_update = now;
|
osu_user.last_update = now;
|
||||||
osu_user.pp = v.try_into().unwrap();
|
osu_user.pp = v.try_into().unwrap();
|
||||||
data.save(osu_user).await.pls_ok();
|
data.save(osu_user).await.pls_ok();
|
||||||
|
|
|
@ -163,6 +163,8 @@ impl AnnouncerHandler {
|
||||||
move |v| {
|
move |v| {
|
||||||
if let Err(e) = v {
|
if let Err(e) = v {
|
||||||
eprintln!(" - key `{}`: {:?}", *key, e)
|
eprintln!(" - key `{}`: {:?}", *key, e)
|
||||||
|
} else {
|
||||||
|
eprintln!(" - key `{}`: complete", *key)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue