Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LOG-8039 update packages #59

Merged
merged 18 commits into from Apr 6, 2020

LOG-8039 remove useless code, fix typos

  • Loading branch information
alestrunda committed Mar 26, 2020
commit cc57ab65c9ef6555a83c209de558101d781c294a
@@ -110,11 +110,7 @@ All of the winston tests are written in [vows][5], and cover all of the use case
"transports": {
"loggly": {
"subdomain": "your-subdomain",
"token": "really-long-token-you-got-from-loggly",
"auth": {
"username": "your-username",
"password": "your-password"
}
"token": "really-long-token-you-got-from-loggly"
}
}
}
@@ -101,7 +101,7 @@ const validateMetadata = meta => {
if (meta == null) {
return {};
} else if (typeof meta !== 'object') {
return { Metadata: meta };
return { metadata: meta };
} else {
return clone(meta);
}
@@ -139,7 +139,7 @@ Loggly.prototype.log = function(meta, callback) {
}

result =
meta && meta.tagsZ
meta && meta.tags
? this.client.log(message, meta.tags, logged)
: this.client.log(message, logged);

@@ -1,6 +1,6 @@
{
"name": "winston-loggly-bulk",
"version": "3.0.2-alpha",
"version": "3.0.3-alpha",
"description": "A Loggly transport for winston",
"author": "Loggly <opensource@loggly.com>",
"contributors": [
@@ -2,11 +2,7 @@
"transports": {
"loggly": {
"subdomain": "your-subdomain",
"token": "really-long-token-you-got-from-loggly",
"auth": {
"username": "your-username",
"password": "your-password"
}
"token": "really-long-token-you-got-from-loggly"
}
}
}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.