https://kedro.org/ logo
#questions
Title
# questions
t

tom kurian

09/06/2023, 1:54 PM
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

datajoely

09/06/2023, 1:58 PM
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

tom kurian

09/06/2023, 2:23 PM
Ok, thanks @datajoely 🙂 I will look into all options.
n

Nok Lam Chan

09/06/2023, 7:53 PM
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.