makerdao / dss-deploy-scripts

GNU Affero General Public License v3.0
49 stars 59 forks source link

Add tee command to log all console output for auditing and reconstruction #77

Closed brianmcmichael closed 4 years ago

brianmcmichael commented 4 years ago

Adds a tee command to the base-deploy calls to capture all deployment output in a log file.

Many addresses are created dynamically in the deployment process and capturing the output logs here can help with forensic analysis of the deployment process.

brianmcmichael commented 4 years ago

By using |& tee we are able to see the realtime output in the console while still capturing stdout and stderr to file.