session-desktop/ts/types/attachments/Errors.ts

12 lines
173 B
TypeScript

export const toLogFormat = (error: any) => {
if (!error) {
return error;
}
if (error && error.stack) {
return error.stack;
}
return error.toString();
};