net4j-log-plugin
v1.0.16
Published
Log for request
Downloads
7
Readme
net4j-log-plugin
Log for request
import Net from 'net4j';
import NetLog from 'net4j-log-plugin';
const net = new Net({
plugins: [
// Should be placed first
new NetLog({
log: {
info: console.log,
error: console.error,
},
}),
...other plugin,
]
});