-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logger #167
Comments
Having something like this would also be quite useful to trace issues like the tesseract workers crashing |
We could build a simple logger ourself: https://adrianhall.github.io/cloud/2019/06/30/building-an-efficient-logger-in-typescript/ Or we maybe could use a library which will make things also easier: https://tslog.js.org/#/ |
I'd go with a dedicaed library |
When creating a composable for it stick to the current conventions. and should be structured like this then /**
* Logger composable
*/
export default function useLogger() {
...
return {
...
};
} |
Issue description
Describe your issue in detail here
Implement a proper logger to replace console.log & console.error
Definition Of Ready (DoR)
This issue can be worked on if
The text was updated successfully, but these errors were encountered: