node-activedirectory
node-activedirectory copied to clipboard
Logger provided in opts is not used.
The docs give the impression that something like this is possible:
var my_log = bunyan.createLogger({
name: 'ActiveDirectory',
streams: [
{ level: 'info',
stream: process.stdout }
]
});
var config = {
url: [...]
log: my_log,
};
However, this is ignored.
+1
This is how I used it:
logging: {
name: 'ActiveDirectory',
streams: [{
level: 'debug',
stream: process.stdout
}]
}