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
Currently, read_blacklist is using logging to log warnings to the console. But the function is called from the tool.config_lvm_filter module, so the logs will be hidden when using vdsm-tool.
We can fix it now and return some additional information that can be processed by the config_lvm_filter module and print the correct logs into sys.stdout.
Note that there is #258, which could allow passing the right logging context through a parameter as an alternate solution.
The text was updated successfully, but these errors were encountered:
Currently,
read_blacklist
is using logging to log warnings to the console. But the function is called from the tool.config_lvm_filter module, so the logs will be hidden when usingvdsm-tool
.We can fix it now and return some additional information that can be processed by the config_lvm_filter module and print the correct logs into
sys.stdout
.Note that there is #258, which could allow passing the right logging context through a parameter as an alternate solution.
The text was updated successfully, but these errors were encountered: