-
Notifications
You must be signed in to change notification settings - Fork 10
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
Research logging libraries, choose one and deploy it in tofn and tofnd #19
Comments
Configurability:
|
log is the most popular library for logs and is actively maintained the rust team. We should definitely use that.
|
It turns out that logging in asynchronous systems is less trivial that traditional systems. tracing is a logging library we can use, that is build for sync systems like
|
Yikes! Tofn does not have any async code. Is it possible to use something like log or simplelog in tofn? Can we restrict use of async logger only to where it's needed in tofnd? |
Yeah, I suppose that we can do that. In terms of complexity things don't seem that bad, though.
So far, the result looks like this
|
@ggutoski , I recommend to use tracing for Since The following is a
|
No description provided.
The text was updated successfully, but these errors were encountered: