UNPKG
@spbrewery/log
Version:
latest (2.0.1)
2.0.1
2.0.0
A Simplified Multi-transport and Structured Logging Library for Brewery Project
@spbrewery/log
/
src
/
transport.js
11 lines
(8 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
Console
=
require
(
'./transports/console'
);
const
File
=
require
(
'./transports/file'
);
const
Transport
= {
Console
:
'Console'
,
File
:
'File'
,
Http
:
'Http'
, };
module
.
exports
= {
Console
,
File
,
Transport
};