forked from lavina/lavina
warn on unhandled irc message
This commit is contained in:
parent
4e5ccd604c
commit
39fed80106
|
@ -333,8 +333,10 @@ async fn handle_incoming_message(
|
||||||
}
|
}
|
||||||
Chan::Local(_) => {}
|
Chan::Local(_) => {}
|
||||||
};
|
};
|
||||||
|
},
|
||||||
|
cmd => {
|
||||||
|
log::warn!("Not implemented handler for client command: {cmd:?}");
|
||||||
}
|
}
|
||||||
_ => {}
|
|
||||||
},
|
},
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("Failed to parse IRC message: {err}");
|
log::warn!("Failed to parse IRC message: {err}");
|
||||||
|
|
Loading…
Reference in New Issue