chore: cover panic error

This commit is contained in:
huzibaca 2024-09-25 15:44:05 +08:00
parent 4eccedcd78
commit b8cb48aead
No known key found for this signature in database
GPG Key ID: D4364EE4851DC302

View File

@ -19,6 +19,11 @@ pub fn redirect_panic_to_log() {
&format!("{:?}", payload)
};
//TODO skip this error
if payload.contains("PostMessage failed ; is the messages queue full?") {
return;
}
let location = panic_info
.location()
.map(|l| l.to_string())