mirror of
https://github.com/johrpan/musicus.git
synced 2025-10-27 12:17:24 +01:00
client: Add extensive logging
This commit is contained in:
parent
2b95dbeadd
commit
ec47969aa9
9 changed files with 32 additions and 2 deletions
|
|
@ -1,9 +1,11 @@
|
|||
use crate::{Client, Result};
|
||||
use log::info;
|
||||
use musicus_database::Instrument;
|
||||
|
||||
impl Client {
|
||||
/// Get all available instruments from the server.
|
||||
pub async fn get_instruments(&self) -> Result<Vec<Instrument>> {
|
||||
info!("Get instruments");
|
||||
let body = self.get("instruments").await?;
|
||||
let instruments: Vec<Instrument> = serde_json::from_str(&body)?;
|
||||
Ok(instruments)
|
||||
|
|
@ -11,6 +13,7 @@ impl Client {
|
|||
|
||||
/// Post a new instrument to the server.
|
||||
pub async fn post_instrument(&self, data: &Instrument) -> Result<()> {
|
||||
info!("Post instrument {:?}", data);
|
||||
self.post("instruments", serde_json::to_string(data)?).await?;
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue