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
The way that Click parses arguments ends up causing the order of arguments to matter. For IGA, I ended up having to make --log-dest and --mode both "eager" arguments (in Click terminology); click parses eager arguments in the order they're given on the command line, which is a problem because changing the mode changes the details of how logging is done. If you pass --log-dest first, then --mode doesn't work as expected.
The text was updated successfully, but these errors were encountered:
The way that Click parses arguments ends up causing the order of arguments to matter. For IGA, I ended up having to make
--log-dest
and--mode
both "eager" arguments (in Click terminology); click parses eager arguments in the order they're given on the command line, which is a problem because changing the mode changes the details of how logging is done. If you pass--log-dest
first, then--mode
doesn't work as expected.The text was updated successfully, but these errors were encountered: