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

Kevin Mills

08/14/2023, 8:34 PM
Hello everyone. I had a question about an older version of kedro. A project that I forked used kedro==0.17.7 that included references to kedro.versioning.journal.JournalFileHandler and and kedro.journal. Our project that we are working on is currently using kedro==0.18.12 so I am attempting to retrofit the other project to use the same version. Is there something that replaced this functionality in the newer versions?
d

Deepyaman Datta

08/14/2023, 10:40 PM
Is it in your
logging.yml
? You can just get rid of the block that (probably) looks like:
Copy code
journal_file_handler:
        class: kedro.versioning.journal.JournalFileHandler
        level: INFO
        base_dir: logs/journals
        formatter: json_formatter
👍 1
k

Kevin Mills

08/14/2023, 10:41 PM
There was something in hooks.py and also loogging.yml. I got rid of it, but wanted to be sure something else didn't replace it. Thanks for the feedback!