13

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.

Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
  • You can do it as any other environment variable. Duplicate of: https://stackoverflow.com/questions/6877727/how-do-i-delete-an-exported-environment-variable – iaforek Sep 18 '18 at 08:51

1 Answers1

21

You can remove an environment variable by:

unset SLS_DEBUG
Benny Bauer
  • 1,035
  • 1
  • 6
  • 19