Updated drawing to console.log errors instead of Sentry log

This commit is contained in:
Mitchell McCaffrey 2021-02-09 08:03:30 +11:00
parent 09471bdf2b
commit bbcc123e4e

View File

@ -3,7 +3,6 @@ import polygonClipping from "polygon-clipping";
import * as Vector2 from "./vector2"; import * as Vector2 from "./vector2";
import { toDegrees, omit } from "./shared"; import { toDegrees, omit } from "./shared";
import { logError } from "./logging";
const snappingThreshold = 1 / 5; const snappingThreshold = 1 / 5;
export function getBrushPositionForTool( export function getBrushPositionForTool(
@ -263,13 +262,7 @@ export function drawActionsToShapes(actions, actionIndex) {
addPolygonDifferenceToShapes(shape, difference, cutShapes); addPolygonDifferenceToShapes(shape, difference, cutShapes);
addPolygonIntersectionToShapes(shape, intersection, cutShapes); addPolygonIntersectionToShapes(shape, intersection, cutShapes);
} catch { } catch {
logError( console.error("Unable to cut shapes");
new Error(
`Unable to find segment for shapes ${JSON.stringify(
shape
)} and ${JSON.stringify(action)}`
)
);
} }
} }
shapesById = cutShapes; shapesById = cutShapes;
@ -357,7 +350,7 @@ export function mergeShapes(shapes) {
} }
return merged; return merged;
} catch { } catch {
logError(new Error(`Unable to merge shapes ${JSON.stringify(shapes)}`)); console.error("Unable to merge shapes");
return shapes; return shapes;
} }
} }