JohnM
07/13/2021, 10:45 AMseph
07/13/2021, 10:47 AMJohnM
07/13/2021, 10:55 AMStefano Bonicatti
07/13/2021, 11:14 AM0644
. Though for instance the documentation makes an example with --logger_mode=420
because that's the decimal value of the octal 0644
--logger_mode=420
, while the default right now is --logger_mode=416
seph
07/13/2021, 1:44 PMJohnM
07/13/2021, 1:58 PMStefano Bonicatti
07/13/2021, 2:03 PMoctal string
part is incorrect, because if so it would accept 0644
or 644
and always parse it as an octal, it’s instead parsing it in base 10, so as a decimal.JohnM
07/13/2021, 2:33 PM