Disable SLS_DEBUG=* in the Serverless Framework

Viewed 5911

When using the serverless framework (on a Mac OS X High Sierra), the SLS_DEBUG environmental variable was set to enable verbose debug info

export SLS_DEBUG=*

Question: Now how do you disable it (other than moving to a new terminal)? export SLS_DEBUG=false did not do the trick.

1 Answers

You can remove an environment variable by:

unset SLS_DEBUG
Related