Skip to content

Commit

Permalink
Merge pull request #3 from JaniAnttonen/protobuf
Browse files Browse the repository at this point in the history
Switch to Protobuf as default data type
  • Loading branch information
JaniAnttonen authored Jan 22, 2019
2 parents 33a6415 + d8f0fde commit 0814521
Show file tree
Hide file tree
Showing 23 changed files with 9,607 additions and 221 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
extends: 'standard',
extends: ["standard"],
env: {
node: true,
jest: true
}
}
};
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ module.exports = class LokiTransport extends Transport {
super(options)
this.batcher = new Batcher({
host: options.host,
interval: options.interval
interval: options.interval,
json: options.json
})
this.batcher.run()
}
Expand Down
Loading

0 comments on commit 0814521

Please sign in to comment.