botpress / tutorial

Getting Started – Tutorial for Botpress X (https://botpress.io/docs/10.0/getting_started/)
7 stars 10 forks source link

Since v11 botpress has stopped storing logs in files and has moved th… #12

Closed malisetti closed 5 years ago

malisetti commented 5 years ago

…em to the database.

 Old configuration format:
    /*
      By default logs are enabled and available in dataDir
    */
    disableFileLogs: false,
    log: {
      file: 'bot.log',
      maxSize: 1e6 // 1mb
    }

  New format:
    /*
      By default logs are enabled and stored in the DB for 30 days
    */
    logs: {
      enabled: true,
      keepDays: 30
    }
CLAassistant commented 5 years ago

CLA assistant check
All committers have signed the CLA.