I’m running some unit testing that requires an exp...
# general
e
I’m running some unit testing that requires an export to grab the information and make sure the number of resources add up, but I actually DON’T want to clutter my console output with all that information (which I’m getting because of the export.) Is there a way to silence or mute the exported console data?
w
You can make it a secret. You can also pass
--suppress-outputs
if you want to skip printing any outputs during an up. Either of those work for you?
e
yea, suppress is what I was looking for. Easy peasy. Thanks!