Skip to content

Commit

Permalink
more detailed error message
Browse files Browse the repository at this point in the history
  • Loading branch information
toger5 committed Dec 2, 2024
1 parent 27108c7 commit 8f5aca9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/room/LobbyView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ export const LobbyView: FC<Props> = ({
// eslint-disable-next-line new-cap
b = BackgroundBlur(15, { delegate: "GPU" });
} catch (e) {
logger.error("disable background blur", e);
logger.error(
"disable background blur because its not supported by the platform.",
e,
);
}
return b;
}, []);
Expand Down

0 comments on commit 8f5aca9

Please sign in to comment.