-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
nsenter: improve debug logging #2460
Conversation
In order to make 'runc --debug' actually useful for debugging nsexec bugs, provide information about all the internal operations when in debug mode. Signed-off-by: Aleksa Sarai <[email protected]>
For reference, this is now the information you can get with
|
CI failing
|
Right, it's because we're generating JSON in C and the log contains newlines. I'll need to change the logging so that invalid-in-JSON characters get ASCII-escaped. |
Did a rebase and json escaping in #2487 |
Using
|
|
I also want to sit down and properly switch us over to |
|
Hmm I don't remember why I closed it, most probably just clicked the wrong button; sorry about that. Feel free to reopen and pick up json escaping stuff from #2487. |
Carrying in #2836 |
In order to make 'runc --debug' actually useful for debugging nsexec
bugs, provide information about all the internal operations when in
debug mode.
Signed-off-by: Aleksa Sarai [email protected]