-
Notifications
You must be signed in to change notification settings - Fork 60
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
Use log instead of println!/eprintln! #79
Comments
Hey! My friend @seanmichwalsh and I are looking to learn about VMM's and Rust. Mind if we take on this issue? It may take us a bit to learn our way around if that's okay with you. |
Sure @tumbleshack , sounds good. If you need any help, let us know. You can also find us on Slack: https://join.slack.com/t/rust-vmm/shared_invite/enQtODAxMzA2ODIyMTc2LWRhYjIwZmQ0YzUxODJlMTRhZWU2ZDBjYmJiNzBmOWVmYjg4MjY5YWRjYjM0YzQ5YzgyMTBmYzNlMjMzYmZlODU |
8901e77 Leftovers from rust-vmm#79 555474a Add script to run tests locally cd3d97f Allow skipping tests when generating the pipeline cc6ed99 Format integration tests code ba2f45c make the test description configurable 877d1fb Update README.md b47488a Autogenerate pipeline fron json config file Signed-off-by: Catalin Dumitru <[email protected]>
8901e77 Leftovers from #79 555474a Add script to run tests locally cd3d97f Allow skipping tests when generating the pipeline cc6ed99 Format integration tests code ba2f45c make the test description configurable 877d1fb Update README.md b47488a Autogenerate pipeline fron json config file Signed-off-by: Catalin Dumitru <[email protected]>
Is this still open? I'm happy to pick up where #114 left off... |
@dodsonmg yes, this is still opened. We should though reduce the scope for the beginning so that's easier to get it merged. We can do this initially for the |
Cool. Thanks @andreeaflorescu. I'll pick it up. |
Do you want the log level and log file to be command line arguments, or do you just want default log level settings and log output to go to stderr? If the former, the log level and file can't be established until we've processed command line arguments, and we'll miss some of the If the latter, then I think we can just initialise the logger first and sweep everything up. |
I think how it worked in Firecracker is that we were using |
Import the
log
crate and use it to log needed information.For now it should be enough to just replace the existing
println!
oreprintln!
.The text was updated successfully, but these errors were encountered: