remove error log in favor of debug log
This commit is contained in:
parent
cbc452f705
commit
7ec4e0d5e5
@ -5,7 +5,6 @@ use reqwest::{
|
|||||||
Client, Response,
|
Client, Response,
|
||||||
};
|
};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use simplelog::*;
|
|
||||||
|
|
||||||
use crate::utils::{errors::ServiceError, handles::db_get_channel, playout_config};
|
use crate::utils::{errors::ServiceError, handles::db_get_channel, playout_config};
|
||||||
use ffplayout_lib::vec_strings;
|
use ffplayout_lib::vec_strings;
|
||||||
@ -146,10 +145,7 @@ where
|
|||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(result) => Ok(result),
|
Ok(result) => Ok(result),
|
||||||
Err(e) => {
|
Err(e) => Err(ServiceError::ServiceUnavailable(e.to_string())),
|
||||||
error!("{e:?}");
|
|
||||||
Err(ServiceError::ServiceUnavailable(e.to_string()))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user