crypto: Shorten some log lines.
parent
69fbe65ac4
commit
a99e47c310
|
@ -533,7 +533,11 @@ impl OlmMachine {
|
||||||
{
|
{
|
||||||
UserSigningPubkey::from(s)
|
UserSigningPubkey::from(s)
|
||||||
} else {
|
} else {
|
||||||
warn!("User identity for our own user {} didn't contain a user signing pubkey", user_id);
|
warn!(
|
||||||
|
"User identity for our own user {} didn't \
|
||||||
|
contain a user signing pubkey",
|
||||||
|
user_id
|
||||||
|
);
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -552,7 +556,8 @@ impl OlmMachine {
|
||||||
.map(UserIdentities::Own)
|
.map(UserIdentities::Own)
|
||||||
} else {
|
} else {
|
||||||
warn!(
|
warn!(
|
||||||
"User identity for our own user {} didn't contain a user signing pubkey",
|
"User identity for our own user {} didn't contain a \
|
||||||
|
user signing pubkey",
|
||||||
user_id
|
user_id
|
||||||
);
|
);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue