Skip to content

Enable API access logs

With Serverless Framework v1.42.0 it’s easy to enable API access logs. Just set the corresponding value on the provider config level like so:

provider
  ...
  ...
  #to enable API access logs
  logs:
    restApi: true
  ...
  ...