Hey, I'm looking for a way to silence the transfor...
# plugins-general
s
Hey, I'm looking for a way to silence the transforms warning about removing paths. I can do this by disabling stderr, but that seems overkill and would make it likely that I miss an actual error. I could add this information to the schema and the warning goes away, but I've left it out intentionally as I don't want it (e.g. company.name is useless as I already have a companies table with that information; all I'm keeping is the company ID for each record). I could also manually remove these values for each row, but would prefer to keep the Singer transformer doing it if possible, as that works with no additional effort. What have you guys done about this when you've encountered it?
d
@sam_woolerton These warnings were moved to debug messages (that aren't printed by default) in singer-python v5.5.1: https://github.com/singer-io/singer-python/commit/9964fbe5d503765d2d8fda055ec99ab26755f194 If your tap is still on an older version, I suggest upgrading 🙂
s
That's fantastic thanks! Is there a release log for Singer like for Meltano? Can't see anything on their main site or Github
d
singer-python, the util library used by most taps, has its own changelog: https://github.com/singer-io/singer-python/blob/master/CHANGELOG.md The spec does too, but that one changes very rarely: https://github.com/singer-io/getting-started/blob/master/CHANGELOG.md
s
Oh right, didn't think of checking that file - my bad.
Thanks for the help!