Just encountered a case where the methods CLILogging places into Object cause problems. Specifically, hoptoad's use of Builder calls error, which is defined already and thus the entire thing dies. Ugh.
There's a couple ways to handle this. Primarily, Main should no longer depend on CLILogging and shouldn't include it by default.
Further, CLILogging might need to have its interface changed, e.g. to _error or Error or something. I dunno.
Just encountered a case where the methods
CLILogging
places intoObject
cause problems. Specifically, hoptoad's use ofBuilder
callserror
, which is defined already and thus the entire thing dies. Ugh.There's a couple ways to handle this. Primarily,
Main
should no longer depend onCLILogging
and shouldn't include it by default.Further,
CLILogging
might need to have its interface changed, e.g. to_error
orError
or something. I dunno.