log state res error
Signed-off-by: girlbossceo <june@girlboss.ceo>
This commit is contained in:
parent
28b63e913f
commit
0390d19b56
1 changed files with 2 additions and 1 deletions
|
@ -974,7 +974,8 @@ impl Service {
|
||||||
res.ok().flatten()
|
res.ok().flatten()
|
||||||
}) {
|
}) {
|
||||||
Ok(new_state) => new_state,
|
Ok(new_state) => new_state,
|
||||||
Err(_) => {
|
Err(e) => {
|
||||||
|
error!("State resolution failed: {}", e);
|
||||||
return Err(Error::bad_database("State resolution failed, either an event could not be found or deserialization"));
|
return Err(Error::bad_database("State resolution failed, either an event could not be found or deserialization"));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue