Hi all, a qq: Currently my kedro info.log is as f...
# questions
t
Hi all, a qq: Currently my kedro info.log is as follows:
Copy code
INFO     Completed 2 out of 7 tasks
How can I ensure that the finished node name is present in this.
d
use a hook to print our the
node.name
attribute using
<http://logger.info|logger.info>()
it wont be in that message itself
but it will adjacent
if you really want to have it in that message I think you need to provide a custom runner
t
Ok, thanks @datajoely 🙂 I will look into all options.
n
Or maybe just change kedro: INFO to kedro: DEBUG if you don't mind verbose log.
Actually i am not sure if my solution works. If you need to customise what get printed probably hook make most sense.