@identity.com/dsr
Version:
The Dynamic Scope Request (DSR) javascript library provides capability around securely requesting credential information between an ID Requester and an ID Holder
10 lines (8 loc) • 347 B
JavaScript
const { createLogger, format, transports } = require('winston');
// Configure the Winston logger. For the complete documentation see https://github.com/winstonjs/winston
const logger = createLogger({
level: 'info',
format: format.combine(format.splat(), format.simple()),
transports: [new transports.Console()]
});
module.exports = logger;