You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
425 B
Markdown

`const clew = require('clew-logger');
clew.create({
prod: process.env.NODE_ENV === 'production',
prodHost: 'http://my-loki-endpoint.domain.com:port',
appTag: 'myAppTag
});
const log = clew.log;
// all other imports for logging can use
// const {log} = require('clew-logger');
app.use(clew.context.attachContext('namespaceName'));
//log is a standard winston logger
log.info({
message: 'This is a test'
})`