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,
|
||||
};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use simplelog::*;
|
||||
|
||||
use crate::utils::{errors::ServiceError, handles::db_get_channel, playout_config};
|
||||
use ffplayout_lib::vec_strings;
|
||||
@ -146,10 +145,7 @@ where
|
||||
.await
|
||||
{
|
||||
Ok(result) => Ok(result),
|
||||
Err(e) => {
|
||||
error!("{e:?}");
|
||||
Err(ServiceError::ServiceUnavailable(e.to_string()))
|
||||
}
|
||||
Err(e) => Err(ServiceError::ServiceUnavailable(e.to_string())),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user