remove logging

This commit is contained in:
Carl-Gerhard Lindesvärd
2023-11-02 15:32:05 +01:00
parent c64e33bbad
commit e1f37b439e
2 changed files with 0 additions and 8 deletions

View File

@@ -30,8 +30,6 @@ export function createIssues(arr: Array<MixanIssue>) {
}
export function createError(status = 500, error: unknown) {
console.log('create error', error);
if (error instanceof Error || typeof error === 'string') {
return new HttpError(status, error);
}