UNPKG

732 BJavaScriptView Raw
1'use strict';
2
3// Config structure that must be preserved
4
5module.exports = {
6 logging: {
7 console: {
8 silent: false,
9 level: 'info',
10 colorize: true
11 },
12 graylog: {
13 silent: true,
14 server: {
15 adapterOptions: {
16 host: 'graylog2.storyous.xyz',
17 port: 12216
18 }
19 }
20 },
21 sentry: {
22 dsn: process.env.SENTRY_DSN || '',
23 silent: true,
24 level: 'error'
25 },
26 loggly: {
27 silent: true,
28 token: process.env.LOGGLY_TOKEN || '',
29 subdomain: 'storyous',
30 json: true
31 }
32 }
33};