You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new config field under '[sandbox]' module in the config toml file:
[sandbox]
# Set the vmm-sandboxer process's log level# The valid log_level value is: "error", "warn", "info", "debug", "trace"# Default log level is "info"log_level = "info"
Why is this needed?
Currently, vmm-sandboxer's log_level is specified by RUST_LOG env when starting the vmm-sandboxer process.
But it is not a good way to configure the vmm-sandboxer's log_level especially when running vmm-sandboxer process as a systemd service.
So we want to add a more flexible method to configure the vmm-sandboxer's log level in the config file.
The text was updated successfully, but these errors were encountered:
fixkuasar-io#35
reason: Add 'sandbox.log_level' field in the config file to
support configure the vmm-sandboxer process log level.
Signed-off-by: flyflypeng <[email protected]>
What would you like to be added?
Add a new config field under '[sandbox]' module in the config toml file:
Why is this needed?
Currently, vmm-sandboxer's log_level is specified by
RUST_LOG
env when starting the vmm-sandboxer process.But it is not a good way to configure the vmm-sandboxer's log_level especially when running vmm-sandboxer process as a systemd service.
So we want to add a more flexible method to configure the vmm-sandboxer's log level in the config file.
The text was updated successfully, but these errors were encountered: