You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js.flow 116B

12345678910
  1. // @flow
  2. export const logLevels = {
  3. debug: 20,
  4. error: 50,
  5. fatal: 60,
  6. info: 30,
  7. trace: 10,
  8. warn: 40,
  9. };