UNPKG
@reclaimprotocol/tls
Version:
latest (0.1.2)
0.1.2
0.1.0
0.0.8
0.0.6
0.0.4
0.0.2
0.0.1
TLS 1.2/1.3 for any JavaScript Environment
github.com/reclaimprotocol/tls/
@reclaimprotocol/tls
/
lib
/
utils
/
logger.js
16 lines
(15 loc)
•
312 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
const
logger = {
info
(
...args
) {
return
console
.
info
(...args); },
debug
(
...args
) {
return
console
.
debug
(...args); },
trace
:
() =>
{ },
warn
(
...args
) {
return
console
.
warn
(...args); },
error
(
...args
) {
return
console
.
error
(...args); } };