Removed mailgun-js dependency from package.json. Added missing colon to /lib/appenders/mailgun.js

This commit is contained in:
Daniel 2016-02-01 12:30:24 -02:00
parent df961350bc
commit 436782b614
2 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,7 @@ function mailgunAppender(_config, _layout) {
to: _config.to,
subject: _config.subject,
text: layout(loggingEvent, config.timezoneOffset)
}
};
mailgun.messages().send(data, function (error, body) {
if (error != null) console.error('log4js.mailgunAppender - Error happened', error);

View File

@ -29,7 +29,6 @@
"lib": "lib"
},
"dependencies": {
"mailgun-js": "^0.7.7",
"readable-stream": "~1.0.2",
"semver": "~4.3.3"
},