Files
DefinitelyTyped/loggly/loggly-tests.ts
Ryan Cavanaugh 290d5dfb4d More fixes
2016-05-04 18:42:46 -07:00

12 lines
257 B
TypeScript

import loggly = require("loggly");
var options: loggly.LogglyOptions = {
token: "YOUR_TOKEN",
subdomain: "YOUR_DOMAIN",
tags: ["NodeJS"],
json: true
};
var client: loggly.Loggly = loggly.createClient(options)
client.log('hello world');