-
Notifications
You must be signed in to change notification settings - Fork 7
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
Binary Fields #12
Comments
Reading the code it looks like rust-journald/src/reader/mod.rs Line 188 in 237fbe0
|
If a field contains non-UTF-8 binary data, does it still contain a UTF-8 encoded field name? |
All field names are
This makes sense to me. You can always convert |
Please have a look at #13 |
Right now it seems that everything is assumed to be UTF-8 as it is passed back as a Rust String. Journald is a binary protocol so it has no limitation on UTF-8. Is there a way to access the non-UTF-8 logs (like code dumps)?
The text was updated successfully, but these errors were encountered: