<@U06A03HV1> I would like to change the logging in...
# development
a
@witty-crayon-22786 I would like to change the logging in scheduler.rsā€™s
execute_helper
function so that for `ExecuteProcessReequest`s it logs
Root ExecuteProcessRequest(description)
rather than `Root ExecuteProcessRequest(entire python repr)`ā€¦ Is there a handy way of doing that, or do I need to futz with lots of things?
šŸ‘ 1
w
@average-vr-56795: mm. that would be... maybe the wrong place to add a special case
in particular, that's how "Nodes are Display'd"
i think that if what you are going for is "executing processes generate useful output at
debug
level", then you should do that closer to the invoke
and we could move the "some root finished" logging to trace
a
I was thinking of making the str implementation of EPR be much less verbose, and making repr be the current verbosity...
w
My feeling is that we don't want to get in the habit of relying on
str
to make rendering nicer
(for example: we should probably have a specific implementation for
--v2-ui
that does something human readable for the "path through the heavy hitters")
a
Yeah, explicit interfaces sound good šŸ™‚