Remove log statement

This commit is contained in:
Gert Hengeveld 2022-08-16 11:45:02 +02:00
parent 18dea52f53
commit b3585b9043

View File

@ -129,7 +129,6 @@ export const Panel: React.FC<{ active: boolean }> = (props) => {
setErrored(true);
},
[PLAY_FUNCTION_THREW_EXCEPTION]: (e) => {
console.log('PLAY_FUNCTION_THREW_EXCEPTION');
if (e?.message !== IGNORED_EXCEPTION.message) setCaughtException(e);
else setCaughtException(undefined);
},