Added logdna.

This commit is contained in:
chris062689 2017-03-14 23:55:22 -04:00
parent cffaa53879
commit aa7b30680e
4 changed files with 20 additions and 14 deletions

View File

@ -1,4 +1,5 @@
{ {
"logdnaKey": "",
"commandPrefix": ".", "commandPrefix": ".",
"logChannel": null, "logChannel": null,
"clientLoginToken": null, "clientLoginToken": null,

View File

@ -3,24 +3,28 @@ winston.emitErrs = true;
var logger = new winston.Logger({ var logger = new winston.Logger({
transports: [ transports: [
new winston.transports.File({
level: 'info',
filename: './server.log',
handleExceptions: true,
humanReadableUnhandledException: true,
json: true,
maxsize: 5242880, //5MB
maxFiles: 5,
colorize: false
}),
new winston.transports.Console({ new winston.transports.Console({
level: 'debug', level: 'silly',
handleExceptions: true, handleExceptions: true,
json: false, humanReadableUnhandledException: true,
colorize: true json: false,
colorize: true
}) })
], ],
handleExceptions: true,
exitOnError: false exitOnError: false
}); });
if (process.env.NODE_ENV == 'production') {
// Setup logging for LogDNA cloud logging.
logger.add(winston.transports.Logdna, {
level: 'silly',
key: config.logdnaKey,
ip: ip.address(),
hostname: os.hostname(),
app: 'services-discordbot'
});
logger.info('[logging] Started LogDNA winston transport.');
}
module.exports = logger; module.exports = logger;

View File

@ -14,6 +14,7 @@
"dependencies": { "dependencies": {
"config": "^1.24.0", "config": "^1.24.0",
"discord.js": "^10.0.1", "discord.js": "^10.0.1",
"logdna": "^1.2.3",
"request": "^2.79.0", "request": "^2.79.0",
"winston": "^2.3.0" "winston": "^2.3.0"
} }

0
start.sh Normal file → Executable file
View File